Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for run_tac (0.63 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper_pybind11.cc

    // Warning: The API is experimental and subject to change.
    PYBIND11_MODULE(_pywrap_tac_wrapper, m) {
      m.def(
          "run_tac",
          [](const std::string& model_file_path,
             const std::vector<std::string>& device_specs,
             const std::string& model_output_path) {
            return ::tflite::run_tac(model_file_path, device_specs,
                                     model_output_path);
          },
          R"pbdoc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tac.py

    """Target aware conversion for TFLite model."""
    
    from tensorflow.compiler.mlir.lite.experimental.tac.py_wrapper import _pywrap_tac_wrapper
    
    
    def run_tac(model_path, targets, output_path):
      """Run target aware conversion for the given tflite model file.
    
      Args:
        model_path: Path to the tflite model file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/_pywrap_tac_wrapper.pyi

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 754 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.h

    #include <Python.h>
    
    namespace tflite {
    
    // Run target-aware-conversion for the given tflite model with the given device
    // specs.
    // Warning: The API is experimental and subject to change.
    bool run_tac(const std::string& model_file_path,
                 const std::vector<std::string>& device_specs,
                 const std::string& model_output_path);
    
    }  // namespace tflite
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.cc

    }
    }  // namespace
    
    // Run target-aware-conversion for the given tflite model with the given device
    // specs.
    // Warning: The API is experimental and subject to changes.
    bool run_tac(const std::string& model_file_path,
                 const std::vector<std::string>& device_specs,
                 const std::string& model_output_path) {
      mlir::TFL::tac::TacModule::Options options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top