Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExperimentalMlirSparsifyModel (0.44 sec)

  1. tensorflow/compiler/mlir/lite/python/_pywrap_converter_api.pyi

    def ExperimentalMlirSparsifyModel(input_contents_txt_raw: object) -> object: ...
    def FlatBufferToMlir(arg0: str, arg1: bool) -> str: ...
    def RegisterCustomOpdefs(custom_opdefs_txt_raw: object) -> object: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/wrap_converter.py

          debug_options_str,
      )
    
    
    def wrapped_experimental_mlir_sparsify(input_data_str):
      """Wraps experimental mlir sparsify model."""
      return _pywrap_converter_api.ExperimentalMlirSparsifyModel(input_data_str)
    
    
    def wrapped_register_custom_opdefs(custom_opdefs_list):
      """Wraps RegisterCustomOpdefs with lazy loader."""
      return _pywrap_converter_api.RegisterCustomOpdefs(custom_opdefs_list)
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          py::arg("disable_per_channel_for_dense_layers") = false,
          py::arg("debug_options_proto_txt_raw") = nullptr,
          R"pbdoc(
          Returns a quantized model.
        )pbdoc");
      m.def(
          "ExperimentalMlirSparsifyModel",
          [](py::object input_contents_txt_raw) {
            return tensorflow::PyoOrThrow(
                tflite::MlirSparsifyModel(input_contents_txt_raw.ptr()));
          },
          py::arg("input_contents_txt_raw"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top