Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getWindowStridesAttr (0.63 sec)

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

            mul_op.getLoc(), filter.getType(), filter, broadcast_multiplier);
        Value new_conv = rewriter.create<mhlo::ConvolutionOp>(
            mul_op.getLoc(), conv_op.getType(), conv_op.getLhs(), new_filter,
            conv_op.getWindowStridesAttr(), conv_op.getPaddingAttr(),
            conv_op.getLhsDilationAttr(), conv_op.getRhsDilationAttr(),
            conv_op.getWindowReversalAttr(), conv_op.getDimensionNumbers(),
    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/quantization/stablehlo/passes/nchw_convolution_to_nhwc.cc

            op.getLoc(), /*resultType0=*/new_conv_output_tensor_type,
            /*lhs=*/input_transpose_op,
            /*rhs=*/filter_transpose_op,
            /*window_strides=*/op.getWindowStridesAttr(),
            /*padding=*/op.getPaddingAttr(),
            /*lhs_dilation=*/op.getLhsDilationAttr(),
            /*rhs_dilation=*/op.getRhsDilationAttr(),
            /*window_reversal=*/op.getWindowReversalAttr(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      } else {
        padding_nums.resize(padding_nums_size);
        for (int i = 0; i < dnums.input_spatial_dimensions_size(); ++i) {
          const int64_t stride =
              mlir::cast<IntegerAttr>(op.getWindowStridesAttr()[i]).getInt();
          const int64_t lhs_size_dilated =
              ::tensorflow::UniformQuantizedConvolutionParams::DilatedSize(
                  lhs_shape.getDimSize(dnums.input_spatial_dimensions(i)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          // Create a Smaller Convolution (Ensure compatibility)
          auto conv_result = rewriter.create<mhlo::ConvolutionOp>(
              conv_op.getLoc(), new_output_type, sliced_input, sliced_kernel,
              conv_op.getWindowStridesAttr(), conv_op.getPaddingAttr(),
              conv_op.getLhsDilationAttr(), conv_op.getRhsDilationAttr(),
              conv_op.getWindowReversalAttr(), conv_op.getDimensionNumbers(), 1, 1,
              conv_op.getPrecisionConfigAttr());
    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