Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for enable_per_channel_quantization (0.54 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

              'input_shape_dynamic': False,
              'enable_per_channel_quantization': False,
          },
          {
              'testcase_name': 'dilation',
              'activation_fn': None,
              'has_bias': False,
              'has_batch_norm': False,
              'target_opset': quant_opts_pb2.TF,
              'input_shape_dynamic': False,
              'enable_per_channel_quantization': False,
              'dilations': [1, 2, 2, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.h

            quantization_method,
        bool enable_per_channel_quantization);
    
    LogicalResult FillAttributesForUniformQuantizedConvolutionOp(
        PatternRewriter& rewriter, Operation* op,
        llvm::StringMap<Attribute>& identifier_to_attr,
        tensorflow::quantization::QuantizationMethod::PresetMethod
            quantization_method,
        bool enable_per_channel_quantization);
    
    LogicalResult FillAttributesForUniformQuantizedAddOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

    LogicalResult FillAttributesForUniformQuantizedDotOp(
        PatternRewriter& rewriter, Operation* op,
        llvm::StringMap<Attribute>& identifier_to_attr,
        QuantMethod quantization_method, bool enable_per_channel_quantization) {
      NamedAttrList attrs;
    
      if (quantization_method ==
          tensorflow::quantization::QuantizationMethod::METHOD_DYNAMIC_RANGE_INT8) {
        // Fill quantization related attributes for Hybrid op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

                                bool enable_per_channel_quantization) {
        op_set_ = op_set;
        quantization_method_ = quantization_method;
        enable_per_channel_quantization_ = enable_per_channel_quantization;
      }
    
      PreprocessOpPass(const PreprocessOpPass& other) {
        op_set_ = other.op_set_;
        quantization_method_ = other.quantization_method_;
        enable_per_channel_quantization_ = other.enable_per_channel_quantization_;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        target_opset_ = target_opset;
        enable_per_channel_quantization_ = enable_per_channel_quantization;
      }
    
      QuantizeCompositeFunctionsPass(const QuantizeCompositeFunctionsPass& other) {
        quantization_method_ = other.quantization_method_;
        target_opset_ = other.target_opset_;
        enable_per_channel_quantization_ = other.enable_per_channel_quantization_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils_test.cc

          tensorflow::quantization::QuantizationMethod::METHOD_STATIC_RANGE_INT8;
      auto res = FillAttributesForUniformQuantizedAddOp(
          test_peer.rewriter_, op, identifier_to_attr, quantization_method,
          /*enable_per_channel_quantization=*/false);
      ASSERT_TRUE(succeeded(res));
      ASSERT_EQ(2147483647, op.getLhsQuantizationMaxValAttr().getInt());
      ASSERT_EQ(-2147483648, op.getLhsQuantizationMinValAttr().getInt());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

      // applicable
      pm.addPass(mlir::quant::CreateQuantizeCompositeFunctionsPass(
          quantization_options.quantization_method().preset_method(),
          quantization_options.op_set(),
          quantization_options.enable_per_channel_quantization(),
          quantization_options.min_num_elements_for_weights(),
          quantization_options.enable_legacy_weight_only(), mlir_dump_file_prefix));
      pm.addPass(mlir::createSymbolDCEPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

                                       OpSet op_set,
                                       bool enable_per_channel_quantization)
          : OpRewritePattern<arith::ConstantOp>(context),
            quant_specs_(quant_specs),
            op_set_(op_set),
            enable_per_channel_quantization_(enable_per_channel_quantization) {}
    
      LogicalResult matchAndRewrite(arith::ConstantOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

      BitType bit_type = 3;
    
      // Defines whether quantization is done in narrow range.
      bool enable_narrow_range = 4;
    
      // Defines whether quantiation is done per-channel.
      bool enable_per_channel_quantization = 5;
    
      // Defines whether quantization is done symmetrically.
      bool enable_symmetric = 6;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateQuantizeCompositeFunctionsPass(
        tensorflow::quantization::QuantizationMethod::PresetMethod
            quantization_method,
        tensorflow::quantization::OpSet target_opset,
        bool enable_per_channel_quantization, int min_num_elements_for_weights,
        bool enable_legacy_weight_only = false,
        std::optional<const absl::string_view> mlir_dump_file_prefix =
            std::nullopt);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top