Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetExporter (0.12 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

    namespace TFL {
    namespace tac {
    
    // Main class for using Target Aware Conversion (TAC).
    // To run TAC:
    // 1) users should create object form this class, with desired options
    //    (TacModule::Options).
    // 2) Use SetImporter/SetExporter to the desired importer
    //    and exporter.
    // 3) Call Run()
    //
    // The module fetches all TargetHardware backends registered in the binary
    // and only create TargetHardware requested in Options.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.cc

      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      tac_module.RegisterExtraDialects(registry);
      tac_module.SetImporter(CreateTfLiteImporter(model_file_path));
      tac_module.SetExporter(
          CreateTfLiteExporter(model_output_path, options.hardware_backends));
      return tac_module.Run().ok();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
      tac_module.RegisterExtraDialects(registry);
      tac_module.SetImporter(CreateTfLiteImporter());
      tac_module.SetExporter(CreateTfLiteExporter(options.hardware_backends));
      return tac_module.Run();
    }
    }  // namespace
    
    int main(int argc, char** argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
    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