Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateTfLiteExporter (0.8 sec)

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

      options.file_name = input_file_name;
      options.input_mlir = false;
      return std::make_unique<mlir::TFL::tac::TfLiteImporter>(options);
    }
    
    std::unique_ptr<mlir::TFL::tac::TacExporter> CreateTfLiteExporter(
        const std::string output_file_name,
        const std::vector<std::string>& target_hardware_backends) {
      mlir::TFL::tac::TfLiteExporter::Options options;
      options.output_mlir = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

      options.file_name = input_file_name;
      options.input_mlir = input_mlir;
      return std::make_unique<mlir::TFL::tac::TfLiteImporter>(options);
    }
    
    std::unique_ptr<mlir::TFL::tac::TacExporter> CreateTfLiteExporter(
        const std::vector<std::string>& target_hardware_backends) {
      mlir::TFL::tac::TfLiteExporter::Options options;
      options.output_mlir = output_mlir;
      options.output_file_name = output_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top