aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/get_started/basic_usage.md
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/g3doc/get_started/basic_usage.md
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/g3doc/get_started/basic_usage.md')
-rw-r--r--tensorflow/g3doc/get_started/basic_usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/g3doc/get_started/basic_usage.md b/tensorflow/g3doc/get_started/basic_usage.md
index dbbbccc776..f24f8867b2 100644
--- a/tensorflow/g3doc/get_started/basic_usage.md
+++ b/tensorflow/g3doc/get_started/basic_usage.md
@@ -290,6 +290,6 @@ with tf.Session() as sess:
A `placeholder()` operation generates an error if you do not supply a feed for
it. See the
[MNIST fully-connected feed tutorial](../tutorials/mnist/tf/index.md)
-([source code](https://tensorflow.googlesource.com/tensorflow/+/master/tensorflow/g3doc/tutorials/mnist/fully_connected_feed.py))
+([source code](https://www.tensorflow.org/code/tensorflow/g3doc/tutorials/mnist/fully_connected_feed.py))
for a larger-scale example of feeds.