Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for QuantizationConfig (0.52 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

    using ::testing::Truly;
    
    TEST(PopulateDefaultsTest, PopulateDefaultsForEmptyConfig) {
      QuantizationConfig config{};
    
      const QuantizationConfig new_config = PopulateDefaults(config);
      EXPECT_TRUE(new_config.pipeline_config().unpack_quantized_types());
    }
    
    TEST(PopulateDefaultsTest, PopulateDefaultsForConfigWithUnpackQuantizedTypes) {
      QuantizationConfig config{};
      config.mutable_pipeline_config()->set_unpack_quantized_types(false);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.h

    // `::stablehlo::quantization::PopulateDefaults`.
    QuantizationConfig PywrapPopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Function used by the pywrap_quantization module to mirror
    // `::stablehlo::quantization::ExpandPresets`.
    QuantizationConfig PywrapExpandPresets(const QuantizationConfig& config);
    
    }  // namespace stablehlo::quantization::pywrap
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // Returns a copy of `user_provided_config` with default values populated where
    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    //
    // The expansion rules are as follows:
    // * StaticRangePtqPreset
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

      config.mutable_specs()->Swap(&new_specs);
    }
    
    }  // namespace
    
    QuantizationConfig ExpandPresets(const QuantizationConfig& config) {
      QuantizationConfig new_config = config;
    
      // Update the `new_config` with each preset's expansions.
      switch (config.preset_case()) {
        case QuantizationConfig::kStaticRangePtqPreset:
          ExpandStaticRangePtqPreset(config.static_range_ptq_preset(), new_config);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

        single representative dataset.
      """
      # Updates user-provided `QuantizationConfig`s for the internal quantization
      # pipeline to work with.
      print('=== User-provided QuantizationConfig ===')
      print(config)
      config = qc.QuantizationConfig.FromString(
          pywrap_quantization.populate_default_configs(config.SerializeToString())
      )
      config = qc.QuantizationConfig.FromString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

      // LINT.IfChange(expand_preset_configs)
      m.def("expand_preset_configs", &PywrapExpandPresets, R"pbdoc(
            Expands presets to other fields in `QuantizationConfig`.
    
            Each preset is expressible by other fields in `QuantizationConfig`.
            Returns a copy of `QuantizationConfig` (serialized) where the fields are
            expanded from presets. If no preset has been set, it is a no-op and
            returns the same copy of the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

    def populate_default_configs(
        user_provided_quantization_config_serialized: bytes,
    ) -> bytes: ...  # QuantizationConfig
    
    # LINT.ThenChange()
    
    # LINT.IfChange(expand_preset_configs)
    def expand_preset_configs(
        quantization_config_serialized: bytes,
    ) -> bytes: ...  # QuantizationConfig
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.cc

                                   py_function_library);
    }
    
    QuantizationConfig PywrapPopulateDefaults(
        const QuantizationConfig& user_provided_config) {
      return PopulateDefaults(user_provided_config);
    }
    
    QuantizationConfig PywrapExpandPresets(const QuantizationConfig& config) {
      return ExpandPresets(config);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 02:51:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir::quant::stablehlo {
    
    using ::stablehlo::quantization::GetReportFilePath;
    using ::stablehlo::quantization::QuantizationConfig;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RunPasses;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        path_map = {'serving_default': dataset_path}
        repr_dataset.TfRecordRepresentativeDatasetSaver(path_map).save(
            {'serving_default': data_gen()}
        )
    
        config = qc.QuantizationConfig(
            static_range_ptq_preset=qc.StaticRangePtqPreset(
                representative_datasets=[
                    qc.RepresentativeDatasetConfig(
                        tf_record=qc.TfRecordFile(path=dataset_path)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top