aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/training/queue_runner.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <bsteiner@google.com>2017-08-24 10:55:08 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-08-24 10:59:44 -0700
commit09fea258a3cf766a1fc59240a2ac22b17d872182 (patch)
tree9540953144f3dcd058fcffd3993da004c5733de2 /tensorflow/cc/training/queue_runner.h
parenta320bf1a78bc374b7ae8a0bde92316385fdad7d9 (diff)
Only use hardware traces on a single subgraph since tracing more than that
isn't supported PiperOrigin-RevId: 166364134
Diffstat (limited to 'tensorflow/cc/training/queue_runner.h')
-rw-r--r--tensorflow/cc/training/queue_runner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/cc/training/queue_runner.h b/tensorflow/cc/training/queue_runner.h
index 71ed44c9c6..2d34500323 100644
--- a/tensorflow/cc/training/queue_runner.h
+++ b/tensorflow/cc/training/queue_runner.h
@@ -62,13 +62,13 @@ class QueueRunner : public RunnerInterface {
/// Starts the queue runner with the given session and sets the run arguments
/// for sess->Run. It also collects and stores the cost model.
Status StartAndCollectCostGraph(Session* sess,
- const RunOptions* run_options = nullptr);
+ const RunOptions& run_options = RunOptions());
/// Starts the queue runner with the given session, and wait for up to the
/// specified time (in milliseconds) for the queues to start to fill up.
Status Start(Session* sess, int wait_for_ms);
Status StartAndCollectCostGraph(Session* session, int wait_for_ms,
- const RunOptions* run_options = nullptr);
+ const RunOptions& run_options = RunOptions());
/// Requests to stop and runs the cancel op. It would be called in a separate
/// thread when coordinator is set. If there is no coordinator it should be
@@ -105,7 +105,7 @@ class QueueRunner : public RunnerInterface {
bool IsRunning() const override { return !stopped_; }
- void SetRunArgumentsAndCostGraph(const RunOptions* run_options);
+ void SetRunArgumentsAndCostGraph(const RunOptions& run_options);
Status RealRun(Session* sess, const string& op, bool update_costs);