Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetRunArgumentsAndCostGraph (0.41 sec)

  1. tensorflow/cc/training/queue_runner.cc

    }
    
    Status QueueRunner::Start(Session* sess) { return Start(sess, 0); }
    
    Status QueueRunner::StartAndCollectCostGraph(Session* sess,
                                                 const RunOptions& run_options) {
      SetRunArgumentsAndCostGraph(run_options);
      return Start(sess, 0);
    }
    
    Status QueueRunner::Start(Session* sess, int wait_for) {
      counter_.reset(new BlockingCounter(runs_));
      for (const string& enqueue_op : enqueue_op_names_) {
    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/queue_runner.h

        return queue_closed_exception_types_.count(
                   static_cast<int>(status.code())) > 0;
      }
    
      bool IsRunning() const override { return !stopped_; }
    
      void SetRunArgumentsAndCostGraph(const RunOptions& run_options);
    
      Status RealRun(Session* sess, const string& op, bool update_costs);
    
      string queue_name_;
      std::vector<string> enqueue_op_names_;
      string close_op_name_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top