Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPaddingAttr (0.16 sec)

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

            /*fuse_bias_constant=*/fuse_bias_constant);
    
        // Determine the attributes for the TFL::Conv2DOp.
        Value input_value = op.getOperand(0);
        if (const DenseIntElementsAttr padding_attr = op.getPaddingAttr();
            !HasProperPadding(op, dimension_numbers, padding_attr)) {
          // Add an extra tfl.pad_op if there are explicit padding values. This
          // extra pad op will allow us to always set the `padding` attribute of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          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