Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IntraOpThreadPool (0.11 sec)

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

    // -------------------------------------------------------------------------- //
    
    namespace {
    // Thread pool for running `intra-op` tasks scheduled by the fallback kernels.
    class IntraOpThreadPool : public ThreadPoolInterface {
     public:
      explicit IntraOpThreadPool(int64_t num_threads)
          : tpool_(Env::Default(), "intra-op",
                   std::max(1, static_cast<int32_t>(num_threads))) {}
    
      void Schedule(std::function<void()> fn) override {
    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