Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for QueueRunnerDef (0.15 sec)

  1. tensorflow/cc/training/queue_runner_test.cc

      GraphDef graph_def;
      TF_EXPECT_OK(root.ToGraphDef(&graph_def));
      return graph_def;
    }
    
    QueueRunnerDef BuildQueueRunnerDef(
        const std::string& queue_name, const std::vector<std::string>& enqueue_ops,
        const std::string& close_op, const std::string& cancel_op,
        const std::vector<Code>& queue_closed_error_codes) {
      QueueRunnerDef queue_runner_def;
      *queue_runner_def.mutable_queue_name() = queue_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 21 06:27:51 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/cc/training/queue_runner.h

      // TODO(yuefengz): we may want to initialize from queues and ops in the
      // future.
      static Status New(const QueueRunnerDef& queue_runner_def,
                        std::unique_ptr<QueueRunner>* result);
    
      /// Creates a new QueueRunner with a coordinator, see coordinator.h for usage.
      static Status New(const QueueRunnerDef& queue_runner_def, Coordinator* coord,
                        std::unique_ptr<QueueRunner>* result);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. tensorflow/cc/training/queue_runner.cc

    #include "tensorflow/core/platform/env.h"
    
    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,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top