Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for enable_mlir_converter (0.32 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

                debug_info_txt_raw.ptr(), enable_mlir_converter,
                quantization_py_function_library));
          },
          py::arg("model_flags_proto_txt_raw"), py::arg("toco_flags_proto_txt_raw"),
          py::arg("input_contents_txt_raw"), py::arg("extended_return") = false,
          py::arg("debug_info_txt_raw") = py::none(),
          py::arg("enable_mlir_converter") = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/wrap_converter.py

        model_flags_str,
        toco_flags_str,
        input_data_str,
        debug_info_str,
        enable_mlir_converter,
    ):
      """Wraps TocoConvert with lazy loader."""
      return _pywrap_converter_api.Convert(
          model_flags_str,
          toco_flags_str,
          input_data_str,
          False,  # extended_return
          debug_info_str,
          enable_mlir_converter,
          py_function_lib.PyFunctionLibrary(),
      )
    
    
    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.h

    // flag is set to true returns a dictionary that contains string representation
    // of the converted model and some statistics like arithmetic ops count.
    // `debug_info_str` contains the `GraphDebugInfo` proto. When
    // `enable_mlir_converter` is True, use MLIR-based conversion instead of
    // TOCO conversion.
    PyObject* Convert(PyObject* model_flags_proto_txt_raw,
                      PyObject* toco_flags_proto_txt_raw,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/_pywrap_converter_api.pyi

    def Convert(model_flags_proto_txt_raw: object, toco_flags_proto_txt_raw: object, input_contents_txt_raw: object, extended_return: bool = ..., debug_info_txt_raw: object = ..., enable_mlir_converter: bool = ..., quantization_py_function_library = ...) -> 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)
  5. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                      PyObject* toco_flags_proto_txt_raw,
                      PyObject* input_contents_txt_raw, bool extended_return,
                      PyObject* debug_info_txt_raw, bool enable_mlir_converter,
                      const tensorflow::quantization::PyFunctionLibrary*
                          quantization_py_function_library) {
      // Use Python C API to validate and convert arguments. In py3 (bytes),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top