Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RunTfrtInitializer (0.15 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.h

      // benchmarking).
      llvm::SmallVector<Tensor> Execute(llvm::StringRef function_name,
                                        llvm::ArrayRef<Tensor> arguments);
    
     private:
      void RunTfrtInitializer();
    
      std::unique_ptr<thread::ThreadPoolInterface> intra_op_;
      std::unique_ptr<tfrt::HostContext> host_context_;
      tfrt::ResourceContext resource_context_;
      std::unique_ptr<tfrt::ExecutionContext> exec_ctx_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 14 22:40:40 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

                        host_context_->diag_handler(), host_context_->allocator());
      CHECK(bef_file_) << "Failed to open BEF";
    
      // Run TFRT initialization function to pre-instantiate fallback kernels.
      RunTfrtInitializer();
    }
    
    llvm::SmallVector<Tensor> RuntimeFallbackExecutor::Execute(
        llvm::StringRef function_name, llvm::ArrayRef<Tensor> arguments) {
      // Get the kernel entrypoint function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top