Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPrecisionConfigAttr (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/nchw_convolution_to_nhwc.cc

            /*dimension_numbers=*/new_dimension_nums,
            /*feature_group_count=*/op.getFeatureGroupCountAttr(),
            /*batch_group_count=*/op.getBatchGroupCountAttr(),
            /*precision_config=*/op.getPrecisionConfigAttr());
    
        // Transpose the output of the `ConvolutionOp` back to the original op's
        // output shape so that users' shapes match.
        // [b, 0, 1, f] => [b, f, 0, 1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

            conv_op.getWindowReversalAttr(), conv_op.getDimensionNumbers(),
            conv_op.getFeatureGroupCount(), conv_op.getBatchGroupCount(),
            conv_op.getPrecisionConfigAttr());
        // For static case, replace the convolution op now.
        if (!is_dynamic_broadcast) {
          rewriter.replaceOp(mul_op, {new_conv});
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top