Skip to content

Commit

Permalink
Update generated Python Op docs.
Browse files Browse the repository at this point in the history
Change: 142311476
  • Loading branch information
tensorflower-gardener committed Dec 17, 2016
1 parent 924097d commit 6b7b584
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.


* <b>`Note`</b>: This is matrix product, not element-wise product.


##### Raises:
Expand Down
6 changes: 5 additions & 1 deletion tensorflow/g3doc/api_docs/python/math_ops.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


* <b>`Note`</b>: This is matrix product, not element-wise product.


##### Raises:
Expand Down

0 comments on commit 6b7b584

Please sign in to comment.