Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for depthwise_ (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      if (!input_shape) {
        return op->emitError(
            "Only input with known shape is supported for Uniform Quantized "
            "opset.");
      }
    
      if (op->getParentOfType<func::FuncOp>().getName().contains("depthwise_")) {
        feature_group_cnt = input_shape.getDimSize(3);
      }
    
      attrs.push_back(rewriter.getNamedAttr(
          feature_group_cnt_attr, rewriter.getI64IntegerAttr(feature_group_cnt)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_uniform_quantized.mlir

        func.return %conv_out : tensor<*x!tf_type.qint32>
      }
    
      // Depthwise convolution. feature_group_count is set to 3rd dim of input shape.
      func.func private @internal_depthwise_conv2d_fn(
                             %input : tensor<*x!tf_type.qint8>, %filter : tensor<*x!tf_type.qint8>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 01:13:58 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top