Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for intra_op_ (0.13 sec)

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

                                        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_;
      tfrt::BefBuffer bef_buffer_;
    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

      void Cancel() override {}
    
     private:
      ThreadPool tpool_;
    };
    }  // namespace
    
    RuntimeFallbackExecutor::RuntimeFallbackExecutor(int64_t num_threads)
        : intra_op_(std::make_unique<IntraOpThreadPool>(num_threads)) {
      // Create a HostContext for running TFRT functions. Concurrent work queue acts
      // similar to the Tensorflow `inter-op` thread pool, so we'll match the size.
    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