aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-14 10:39:12 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-14 11:41:30 -0700
commit0d088fbaaa724a3b5d19870c1ae334671af3269e (patch)
tree32edc7937283cf5514f7d7dfce379c20a5505540
parentf34cf72a0063c130d909a285560cd9831f5fa04d (diff)
Update generated Python Op docs.
Change: 119873463
-rw-r--r--tensorflow/g3doc/api_docs/python/framework.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/tensorflow/g3doc/api_docs/python/framework.md b/tensorflow/g3doc/api_docs/python/framework.md
index c13c25d0e6..44886ecf3e 100644
--- a/tensorflow/g3doc/api_docs/python/framework.md
+++ b/tensorflow/g3doc/api_docs/python/framework.md
@@ -268,6 +268,11 @@ with g.device(matmul_on_gpu):
# on CPU 0.
```
+**N.B.** The device scope may be overridden by op wrappers or
+other library code. For example, a variable assignment op
+`v.assign()` must be colocated with the `tf.Variable` `v`, and
+incompatible device scopes will be ignored.
+
##### Args: