Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for quantization_config_serialized (0.42 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

    # LINT.IfChange(static_range_ptq)
    def static_range_ptq(
        src_saved_model_path: str,
        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()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

            `src_saved_model_path` and saves the resulting model to
            `dst_saved_model_path`.
    
            The user should pass a serialized `QuantizationConfig` for the
            `quantization_config_serialized` argument, and a signature key ->
            serialized `SignatureDef` mapping for the `signature_def_map_serialized`
            argument.
    
            Raises `StatusNotOk` exception if when the run was unsuccessful.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

      if _has_quantization_method(config.specs, 'static_range_ptq'):
        pywrap_quantization.static_range_ptq(
            src_saved_model_path,
            dst_saved_model_path,
            quantization_config_serialized=config.SerializeToString(),
            signature_keys=list(signature_def_map.keys()),
            signature_def_map_serialized=signature_def_map_serialized,
            py_function_library=py_function_lib.PyFunctionLibrary(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top