Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for _quantization_method (0.33 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                "the `min_num_elements_for_weights`.");
          }
        }
    
        // Disable quantization if the quantization method is NO_QUANTIZE.
        QuantizationMethod quantization_method =
            quant_options_.quantization_method();
        if (quantization_method.quantization_component_specs().empty()) {
          return absl::InternalError(
              "The quantization method has been set to METHOD_NO_QUANTIZE.");
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

    // Defines arious options to specify and control the behavior of the
    // StableHLO quantizer.
    // NEXT ID: 2
    message QuantizationOptions {
      QuantizationMethod quantization_method = 1;
    }
    
    // NEXT ID: 3
    message QuantizationMethod {
      // Quantization Method can be either preset or custom.
      oneof quantization_method {
        PresetQuantizationMethod preset_quantization_method = 1;
        CustomQuantizationMethod custom_quantization_method = 2;
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Lifts the dynamic range quantizable spots as composite functions.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateLiftQuantizableSpotsAsFunctionsDRQPass(
        tensorflow::quantization::QuantizationMethod::PresetMethod
            quantization_method,
        tensorflow::quantization::OpSet op_set, int min_num_elements_for_weights);
    
    // Replaces tf.CustomAggregator ops with quant.Stats ops for finalizing the
    // calibration procedure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/concurrency_test.py

            root, temp_path, signatures=root.add.get_concrete_function()
        )
    
        quantization_options = quant_opts_pb2.QuantizationOptions(
            quantization_method=quant_opts_pb2.QuantizationMethod(
                preset_method=quant_opts_pb2.QuantizationMethod.PresetMethod.METHOD_STATIC_RANGE_INT8
            ),
            tags={tag_constants.SERVING},
            signature_keys=['serving_default'],
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // the quantization configuration for units that are not specified in
      // unit-wise configurations.
      QuantizationMethod quantization_method = 1;
    
      OpSet op_set = 2;  // If not specified, it defaults to `XLA`.
    
      // Quantization spec for each unit. This quantization spec will override the
      // `quantization_method` for matching nodes and ops. If there are conflicts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

                                   QuantMethod quantization_method)
          : quant_specs_(quant_specs) {
        quant_specs_.inference_type = tensorflow::DT_QINT8;
        enable_per_channel_quantization_ = !quant_specs_.disable_per_channel;
        enable_post_training_quantize_ =
            (quantization_method == tensorflow::quantization::QuantizationMethod::
                                        METHOD_STATIC_RANGE_INT8);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      LogicalResult match(func::FuncOp entry_func_op,
                          const Method& quantization_method) const override {
        if (!quantization_method.has_static_range_ptq()) {
          return failure();
        }
        return MatchGemmStyleOp<DotGeneralOp>(entry_func_op);
      }
    
      void rewrite(func::FuncOp entry_func_op, const Method& quantization_method,
                   PatternRewriter& rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

      pm.addPass(mlir::quant::CreateInsertQuantizedFunctionsPass(
          quantization_options.quantization_method().preset_method(),
          quantization_options.op_set()));
      // TODO: b/260677670 - Pass quantization options as pass's inputs where
      // applicable
      pm.addPass(mlir::quant::CreateQuantizeCompositeFunctionsPass(
          quantization_options.quantization_method().preset_method(),
          quantization_options.op_set(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/quantize_passes.cc

                               const QuantizationOptions& quantization_options) {
      QuantizationOptions quantization_options_ = quantization_options;
      if (quantization_options.quantization_method()
              .has_preset_quantization_method()) {
        quantization_options_ =
            mlir::quant::stablehlo::FillPresetQuantizationOptions(
                quantization_options);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.cc

      CustomQuantizationMethod custom_method =
          quantization_options_.quantization_method().custom_quantization_method();
      QuantizationComponentSpec *activation_component, *weight_component,
          *bias_component;
      const auto preset_method = quantization_options_.quantization_method()
                                     .preset_quantization_method()
                                     .preset_method();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top