Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DepthwiseConv2D (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

              (TFL_DequantizeOp
                  (TFL_QuantizeOp (TF_ReshapeOp $input, $shape),
                  (UpdateShapeWithAxis<3> $qtype, $old_value))),
      [(UsedBy<"DepthwiseConv2D"> $old_value),
       (CanUpdateShapeWithAxis<3> $qtype, $old_value)],
      [], (addBenefit 10)>;
    
    // The axis is set to 3, because this transpose is from the legalization of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

        // Disable quantization for the DepthwiseConv since it has no benefits in
        // the XLA opset.
        if (function_name.contains("depthwise_conv2d")) {
          return absl::InternalError(
              "DepthwiseConv2D doesn't get any benefit of quantization in XLA.");
        } else if (function_name.contains("conv2d")) {
          // For Conv2D, the channel dimension must be static to calculate the
          // feature group count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top