Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DepthwiseConv2D (0.3 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/quantized_function_library.mlir

          attr_map = "strides:0,use_cudnn_on_gpu:1,padding:2,explicit_paddings:3,dilations:4"
        } : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
        func.return %5 : tensor<*xi32>
      }
    
      // DepthwiseConv2D with (simulated) int32 accumulation.
      func.func private @internal_depthwise_conv2d_fn(
                             %input : tensor<*xi8>, %filter : tensor<*xi8>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            /*depth_multiplier=*/rewriter.getI32IntegerAttr(multiplier));
      }
    
     private:
      /// Legalize the given filter by converting it from TensorFlow filter data
      /// format to TFLite DepthwiseConv2D op filter data format and return Value
      /// for the converted filter.  TensorFlow filter data format is
      /// [filter_height, filter_width, in_channels, channel_multiplier] and TFLite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. RELEASE.md

            collisions across summary types.
    
    *   When running on GPU (with cuDNN version 7.6.3 or
        later),`tf.nn.depthwise_conv2d` backprop to `filter` (and therefore also
        `tf.keras.layers.DepthwiseConv2D`) now operate deterministically (and
        `tf.errors.UnimplementedError` is no longer thrown) when op-determinism has
        been enabled via `tf.config.experimental.enable_op_determinism`. This closes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top