aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/summary_ops.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-01-13 07:24:12 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2016-01-13 07:24:12 -0800
commit5515148be85f369484d6179b7c1baab30995b068 (patch)
tree44aad0dcac3376f69acc3ac03c99bf956d136e44 /tensorflow/core/ops/summary_ops.cc
parent7a524d4de0a0da527f355adb7eccea7756c82dac (diff)
Minor fixes (related) to gpu_event_mgr_test.cc
This test got out of sync after some recent changes. This CL allows the test function to explicitly stop/start the polling loop so we can test some invarients without non-deterministic timing issues. Also, the change to TensorReferenceVector is now handled correctly in ~EventMgr, and reliably tested. Change: 112016082
Diffstat (limited to 'tensorflow/core/ops/summary_ops.cc')
-rw-r--r--tensorflow/core/ops/summary_ops.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/ops/summary_ops.cc b/tensorflow/core/ops/summary_ops.cc
index 33a7a614ab..8f5caaddf8 100644
--- a/tensorflow/core/ops/summary_ops.cc
+++ b/tensorflow/core/ops/summary_ops.cc
@@ -45,7 +45,7 @@ REGISTER_OP("HistogramSummary")
Outputs a `Summary` protocol buffer with a histogram.
The generated
-[`Summary`](https://tensorflow.googlesource.com/tensorflow/+/master/tensorflow/core/framework/summary.proto)
+[`Summary`](https://www.tensorflow.org/code/tensorflow/core/framework/summary.proto)
has one summary value containing a histogram for `values`.
This op reports an `OutOfRange` error if any value is not finite.
@@ -118,7 +118,7 @@ REGISTER_OP("MergeSummary")
Merges summaries.
This op creates a
-[`Summary`](https://tensorflow.googlesource.com/tensorflow/+/master/tensorflow/core/framework/summary.proto)
+[`Summary`](https://www.tensorflow.org/code/tensorflow/core/framework/summary.proto)
protocol buffer that contains the union of all the values in the input
summaries.