Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExperimentalWriteBytecode (0.16 sec)

  1. tensorflow/compiler/mlir/python/mlir.h

                                            bool show_debug_info,
                                            TF_Status *status);
    
    // Writes the input textual MLIR as bytecode to output file.
    void ExperimentalWriteBytecode(const std::string &filename,
                                   const std::string &mlir_txt, TF_Status *status);
    
    // Loads a TFLite flatbuffer, convert to TOSA for backend compilation and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir.cc

        tsl::Set_TF_Status_from_Status(status, diagnostic_handler.ConsumeStatus());
        return "// error";
      }
      return MlirModuleToString(*module, show_debug_info);
    }
    
    void ExperimentalWriteBytecode(const std::string& filename,
                                   const std::string& mlir_txt, TF_Status* status) {
      mlir::DialectRegistry registry;
      mlir::RegisterAllTensorFlowDialects(registry);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top