Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for PopulateDefaults (0.41 sec)

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

      // not overridden.
      const QuantizationConfig new_config = PopulateDefaults(config);
      EXPECT_FALSE(new_config.pipeline_config().unpack_quantized_types());
    }
    
    TEST(PopulateDefaultsTest, DefaultCalibrationOptionsPopulated) {
      QuantizationConfig config{};
    
      const QuantizationConfig new_config = PopulateDefaults(config);
      EXPECT_THAT(new_config.calibration_options().calibration_method(),
    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/passes/testing/test_pre_calibration_component.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h.inc"
    
    namespace {
    
    using ::stablehlo::quantization::ExpandPresets;
    using ::stablehlo::quantization::PopulateDefaults;
    using ::stablehlo::quantization::QuantizationConfig;
    
    class TestPreCalibrationComponentPass
        : public impl::TestPreCalibrationComponentPassBase<
              TestPreCalibrationComponentPass> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration_test.cc

    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::stablehlo::quantization::ExpandPresets;
    using ::stablehlo::quantization::PopulateDefaults;
    using ::stablehlo::quantization::QuantizationConfig;
    using ::testing::Contains;
    using ::testing::SizeIs;
    using ::testing::StartsWith;
    using ::testing::StrEq;
    using ::tsl::testing::IsOk;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.cc

    namespace tensorflow {
    namespace {
    
    using ::mlir::quant::stablehlo::StaticRangePtqComponent;
    using ::mlir::quant::stablehlo::WeightOnlyPtqComponent;
    using ::stablehlo::quantization::Method;
    using ::stablehlo::quantization::PopulateDefaults;
    using ::stablehlo::quantization::QuantizationConfig;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 10:49:12 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.h

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

    namespace stablehlo::quantization {
    
    // 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`.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         * @return The populated execution request, never {@code null}.
         * @throws MavenExecutionRequestPopulationException If the execution request could not be populated.
         */
        MavenExecutionRequest populateDefaults(MavenExecutionRequest request)
                throws MavenExecutionRequestPopulationException;
    
        /*if_not[MAVEN4]*/
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/MavenProjectsCreator.java

            MavenExecutionRequestPopulator populator = container.lookup(MavenExecutionRequestPopulator.class);
            populateFromSettings(settings, executionRequest, populator);
            populator.populateDefaults(executionRequest);
            ProjectBuildingRequest buildingRequest = executionRequest.getProjectBuildingRequest();
            buildingRequest.getRemoteRepositories().forEach(repository -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    using ::stablehlo::quantization::DebuggerConfig;
    using ::stablehlo::quantization::ExpandPresets;
    using ::stablehlo::quantization::IsCalibrationRequired;
    using ::stablehlo::quantization::PopulateDefaults;
    using ::stablehlo::quantization::QuantizationConfig;
    using ::stablehlo::quantization::io::CreateTmpDir;
    using ::stablehlo::quantization::io::GetLocalTmpFileName;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top