Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for PyFunctionLibrary (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.cc

        PYBIND11_OVERRIDE_PURE(std::optional<MinMaxValue>, PyFunctionLibrary,
                               get_calibration_min_max_value,
                               calibration_statistics, calibration_options);
      }
    };
    
    }  // namespace
    
    PYBIND11_MODULE(pywrap_function_lib, m) {
      py::class_<PyFunctionLibrary, PyFunctionLibraryTrampoline>(
          m, "PyFunctionLibrary")
          .def(py::init<>())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.pyi

        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(quantize_weight_only)
    def quantize_weight_only(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quantization_options_serialized: bytes,
        *,
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

        dst_saved_model_path: str,
        quantization_config_serialized: bytes,
        *,
        signature_keys: list[str],
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(weight_only_ptq)
    def weight_only_ptq(
        src_saved_model_path: str,
        dst_saved_model_path: str,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace py = pybind11;
    
    namespace {
    
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::QuantizationOptions;
    using ::tensorflow::quantization::QuantizeDynamicRangePtq;
    using ::tensorflow::quantization::QuantizeQatModel;
    using ::tensorflow::quantization::QuantizeStaticRangePtq;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    StaticRangePtqComponent::StaticRangePtqComponent(
        absl::Nonnull<MLIRContext*> ctx,
        absl::Nonnull<const PyFunctionLibrary*> py_function_library,
        const absl::string_view src_saved_model_path,
        std::vector<std::string> signature_keys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model_test.py

              quant_opts_serialized,
              signature_keys=signature_def_keys,
              signature_def_map_serialized={},
              function_aliases={},
              py_function_library=py_function_lib.PyFunctionLibrary(),
              representative_dataset_file_map_serialized=None,
          )
    
      def test_quantize_model_fails_when_invalid_quant_options_type(self):
        src_saved_model_path = self.create_tempdir().full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 02:09:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.cc

    namespace stablehlo::quantization::pywrap {
    
    using ::mlir::quant::stablehlo::QuantizeStaticRangePtq;
    using ::mlir::quant::stablehlo::QuantizeWeightOnlyPtq;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    // Note for maintainers: the definitions should ONLY mirror existing functions
    // defined in different targets. Do not include any extra business logic that
    // causes divergence from the semantics of mirrored functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 02:51:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.h

        const std::vector<std::string>& signature_keys,
        const absl::flat_hash_map<std::string, tensorflow::SignatureDef>&
            signature_def_map,
        const tensorflow::quantization::PyFunctionLibrary& py_function_library);
    
    // Function used by the pywrap_quantization module to mirror
    // `::mlir::quant::stablehlo::QuantizeWeightOnlyPtq`.
    absl::Status PywrapQuantizeWeightOnlyPtq(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

            signature_keys=list(signature_def_map.keys()),
            signature_def_map_serialized=signature_def_map_serialized,
            py_function_library=py_function_lib.PyFunctionLibrary(),
        )
      elif _has_quantization_method(config.specs, 'weight_only_ptq'):
        pywrap_quantization.weight_only_ptq(
            src_saved_model_path,
            dst_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

    using ::stablehlo::quantization::GetReportFilePath;
    using ::stablehlo::quantization::QuantizationConfig;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RunPasses;
    
    WeightOnlyPtqComponent::WeightOnlyPtqComponent(absl::Nonnull<MLIRContext*> ctx)
        : ctx_(ABSL_DIE_IF_NULL(ctx)) {}  // Crash OK
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top