Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for run_tac (0.1 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/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)
  3. 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