Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for new_conv2d (0.09 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

                  conv_op) {
            return failure();
          }
          Value new_shape_of = rewriter.create<shape::ShapeOfOp>(
              mul_op.getLoc(), shape_of_op.getType(), new_conv);
          shape_of_op.replaceAllUsesWith(new_shape_of);
          rewriter.replaceOp(mul_op, {new_conv});
        }
    
        return success();
      }
    };
    
    class FuseMhloConvolutionPass
        : public PassWrapper<FuseMhloConvolutionPass, OperationPass<func::FuncOp>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                  RankedTensorType::get(
                      {static_cast<int64_t>(transposed_output_shape_i32.size())},
                      rewriter.getI32Type()),
                  transposed_output_shape_i32));
          auto new_conv = rewriter.create<TF::Conv2DBackpropInputOp>(
              conv_op.getLoc(), output_type, output_sizes, filter, conv_input,
              rewriter.getI64ArrayAttr(strides),
              /*use_cudnn_on_gpu=*/rewriter.getBoolAttr(true),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top