Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QueueRunner (0.1 sec)

  1. tensorflow/cc/training/queue_runner.cc

    namespace tensorflow {
    
    Status QueueRunner::New(const QueueRunnerDef& queue_runner_def,
                            std::unique_ptr<QueueRunner>* result) {
      result->reset(new QueueRunner());
      return (*result)->Init(queue_runner_def);
    }
    
    Status QueueRunner::New(const QueueRunnerDef& queue_runner_def,
                            Coordinator* coord,
                            std::unique_ptr<QueueRunner>* result) {
      result->reset(new QueueRunner());
    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/cc/training/coordinator.h

    /// otherwise the QueueRunner::Join() could sometimes hang. The
    /// Coordinator::RequestStop() plays the key role which notifies all running
    /// threads under a coordinator to stop. This function could be called by any
    /// thread or any client.
    /// Usage, in the client:
    ///   Coordinator coord;
    ///   std::unique_ptr<QueueRunner> qr(&coord, ...);
    ///   qr.Start(session);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top