Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for thread_pool_ (0.15 sec)

  1. tensorflow/cc/training/queue_runner.cc

    Status QueueRunner::Start(Session* sess, int wait_for) {
      counter_.reset(new BlockingCounter(runs_));
      for (const string& enqueue_op : enqueue_op_names_) {
        thread_pool_->Schedule(
            std::bind(&QueueRunner::Run, this, sess, enqueue_op));
      }
      if (coord_) {
        thread_pool_->Schedule(std::bind(&QueueRunner::Stop, this, sess));
      }
      // Wait for up to 'wait_for' milliseconds.
      if (wait_for > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

          client_(client),
          transfer_manager_(client->backend().transfer_manager()),
          shape_determination_fns_(std::move(shape_determination_fns)),
          thread_pool_(thread_pool) {
      CHECK(host_to_device_stream_ != nullptr);
      CHECK(stream_ != nullptr);
    }
    
    void XlaDeviceContext::CopyTensorInSameDevice(const Tensor* input_tensor,
                                                  Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

      VLOG(1) << "XlaDevice options: use_multiple_streams: "
              << options.use_multiple_streams << " use_global_compute_stream: "
              << options.use_global_compute_stream;
      thread_pool_.reset(new thread::ThreadPool(session_options.env, "xla_device",
                                                /*num_threads=*/1));
    
      // We have multiple device to device streams to allow for some concurrency
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    #include "tensorflow/compiler/mlir/tfrt/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tfrt/utils/host_context.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/platform/threadpool.h"
    #include "tensorflow/core/platform/threadpool_interface.h"
    #include "tensorflow/core/runtime_fallback/kernel/kernel_fallback_execute_compat_eager.h"
    #include "tensorflow/core/runtime_fallback/runtime/kernel_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_experimental.cc

      // TODO(b/113217601): This is needed for EagerContext::runner_ to use a
      // threadpool, so that we avoid the possibility of running the runner_ in the
      // threadpool of GPU event mgr, as that can trigger more callbacks to be
      // scheduled on that same threadpool, causing a deadlock in cases where the
      // caller of event_mgr->ThenExecute() blocks on the completion of the callback
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    ### Path operation functions
    
    When you declare a *path operation function* with normal `def` instead of `async def`, it is run in an external threadpool that is then awaited, instead of being called directly (as it would block the server).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. docs/es/docs/async.md

    ### Path operation functions
    
    Cuando declaras una *path operation function* con `def` normal en lugar de `async def`, se ejecuta en un threadpool externo que luego es "<abbr title="En español: esperado. Usando await.">awaited</abbr>", en lugar de ser llamado directamente (ya que bloquearía el servidor).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

    // Get-or-create thread pool for a given collective.
    static thread::ThreadPool* GetOrCreateThreadPoolForCollective(
        const XlaCompilationResult::CollectiveInfo& collective_info) {
      static absl::Mutex m(absl::kConstInit);
      static auto& thread_pool_cache ABSL_GUARDED_BY(m) =
          *new absl::node_hash_map<XlaCompilationResult::CollectiveInfo,
                                   thread::ThreadPool>();
      absl::MutexLock l(&m);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    ### Funções de operação de rota
    
    Quando você declara uma *função de operação de rota* com `def` normal ao invés de `async def`, ela é rodada em uma threadpool externa que então é aguardada, ao invés de ser chamada diretamente (ela poderia bloquear o servidor).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      tensorflow::Status error_status;
      {
        // Start a threadpool to convert signatures, since signature conversion can
        // be time consuming especially for large models. Threadpool destructor
        // blocks until all work is done.
        thread::ThreadPool thread_pool(Env::Default(), "ConvertSignatures",
                                       kNumThreadToConvertSignatures);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top