Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateXlaConvOpFromTfDepthwiseConv2dOp (0.59 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    def CreateXLAConvOpFromTFConv2DOp : NativeCodeCall<
      "CreateXlaConvOpFromTfConv2dOp($_builder, $_loc, $0...)">;
    
    def CreateXLAConvOpFromTFDepthwiseConv2DOp : NativeCodeCall<
      "CreateXlaConvOpFromTfDepthwiseConv2dOp($_builder, $_loc, $0...)">;
    
    def CreateXlaDotV2OpFromTfMatMulOp : NativeCodeCall<
      "CreateXlaDotV2OpFromTfMatMulOp($_builder, $_loc, $0...)">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

                             feature_group_cnt);
    }
    
    // Creates a XlaConvV2Op from TF DepthwiseConv2DOp and returns its output.
    Value CreateXlaConvOpFromTfDepthwiseConv2dOp(
        OpBuilder &builder, Location loc, Value input, Value filter, Value input_zp,
        Value conv_output, ArrayAttr strides, ArrayAttr dilations,
        StringAttr conv_padding, ArrayAttr explicit_paddings) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top