From 6b7b58498e9d64b3dbe19ff69014c266638e2ee6 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 16 Dec 2016 16:38:34 -0800 Subject: [PATCH] Update generated Python Op docs. Change: 142311476 --- .../python/functions_and_classes/shard2/tf.matmul.md | 6 +++++- tensorflow/g3doc/api_docs/python/math_ops.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.matmul.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.matmul.md index d20ff3a5bade72..1c8571247cc2de 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.matmul.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.matmul.md @@ -73,7 +73,11 @@ c = tf.matmul(a, b) => [[[ 94 100] the product of the corresponding matrices in `a` and `b, e.g. if all transpose or adjoint attributes are `False`: - output[..., :, :] = a[..., :, :] * b[..., :, :] , + `output`[..., i, j] = sum_k (`a`[..., i, k] * `b`[..., k, j]), + for all indices i, j. + + +* `Note`: This is matrix product, not element-wise product. ##### Raises: diff --git a/tensorflow/g3doc/api_docs/python/math_ops.md b/tensorflow/g3doc/api_docs/python/math_ops.md index f747383c071c71..830220ed616f28 100644 --- a/tensorflow/g3doc/api_docs/python/math_ops.md +++ b/tensorflow/g3doc/api_docs/python/math_ops.md @@ -1674,7 +1674,11 @@ c = tf.matmul(a, b) => [[[ 94 100] the product of the corresponding matrices in `a` and `b, e.g. if all transpose or adjoint attributes are `False`: - output[..., :, :] = a[..., :, :] * b[..., :, :] , + `output`[..., i, j] = sum_k (`a`[..., i, k] * `b`[..., k, j]), + for all indices i, j. + + +* `Note`: This is matrix product, not element-wise product. ##### Raises: