aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/framework.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-09-28 23:21:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-09-29 00:35:42 -0700
commit226bdfbd8f4b09e742b83982450b39cf90613159 (patch)
tree0ad4c51fbe0b12b0d2376466df6990f5b811b151 /tensorflow/g3doc/api_docs/python/framework.md
parentb6f4dd7966bf74118382d811f491e17ff52c7680 (diff)
Update generated Python Op docs.
Change: 134630508
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/framework.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/framework.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/g3doc/api_docs/python/framework.md b/tensorflow/g3doc/api_docs/python/framework.md
index 73886efd8a..eacd295ef3 100644
--- a/tensorflow/g3doc/api_docs/python/framework.md
+++ b/tensorflow/g3doc/api_docs/python/framework.md
@@ -2697,7 +2697,7 @@ Pass "library_filename" to a platform-specific mechanism for dynamically
loading a library. The rules for determining the exact location of the
library are platform-specific and are not documented here. When the
library is loaded, ops and kernels registered in the library via the
-REGISTER_* macros are made available in the TensorFlow process. Note
+`REGISTER_*` macros are made available in the TensorFlow process. Note
that ops with the same name as an existing op are rejected and not
registered with the process.
@@ -3626,10 +3626,12 @@ Returns the product of `self` and `other`.
Dimensions are summed as follows:
+```
Dimension(m) * Dimension(n) == Dimension(m * n)
Dimension(m) * Dimension(None) == Dimension(None)
Dimension(None) * Dimension(n) == Dimension(None)
Dimension(None) * Dimension(None) == Dimension(None)
+```
##### Args: