aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-01-11 09:53:48 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-11 10:06:49 -0800
commitc14c1686c64bb93b4d372547f64680ff37433508 (patch)
tree3ebdbf7acb3dfed51cbe646804dd1716207d03a4
parent604116c051072050e9a466e3ac3d679a09fed5ec (diff)
Update generated Python Op docs.
Change: 144217413
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.mul.md24
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.sub.md24
-rw-r--r--tensorflow/g3doc/api_docs/python/math_ops.md48
3 files changed, 52 insertions, 44 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.mul.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.mul.md
index 1ac6abe73a..41aa4b4f64 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.mul.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.mul.md
@@ -1,18 +1,20 @@
-### `tf.mul(x, y, name=None)` {#mul}
+### `tf.mul(*args, **kwargs)` {#mul}
Returns x * y element-wise.
-*NOTE*: `Mul` supports broadcasting. More about broadcasting
-[here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
+ *NOTE*: `Mul` supports broadcasting. More about broadcasting
+ [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
-##### Args:
+ Args:
+ x: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `uint8`, `int8`, `uint16`, `int16`, `int32`, `int64`, `complex64`, `complex128`.
+ y: A `Tensor`. Must have the same type as `x`.
+ name: A name for the operation (optional).
+ Returns:
+ A `Tensor`. Has the same type as `x`.
+ DEPRECATED FUNCTION
-* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `uint8`, `int8`, `uint16`, `int16`, `int32`, `int64`, `complex64`, `complex128`.
-* <b>`y`</b>: A `Tensor`. Must have the same type as `x`.
-* <b>`name`</b>: A name for the operation (optional).
-
-##### Returns:
-
- A `Tensor`. Has the same type as `x`.
+THIS FUNCTION IS DEPRECATED. It will be removed after 2016-12-30.
+Instructions for updating:
+`tf.mul(x, y)` is deprecated, please use `tf.multiply(x, y)` or `x * y`
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.sub.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.sub.md
index 83dbd7a93c..88c2b90d9f 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.sub.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.sub.md
@@ -1,18 +1,20 @@
-### `tf.sub(x, y, name=None)` {#sub}
+### `tf.sub(*args, **kwargs)` {#sub}
Returns x - y element-wise.
-*NOTE*: `Sub` supports broadcasting. More about broadcasting
-[here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
+ *NOTE*: `Sub` supports broadcasting. More about broadcasting
+ [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
-##### Args:
+ Args:
+ x: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `int32`, `int64`, `complex64`, `complex128`.
+ y: A `Tensor`. Must have the same type as `x`.
+ name: A name for the operation (optional).
+ Returns:
+ A `Tensor`. Has the same type as `x`.
+ DEPRECATED FUNCTION
-* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `int32`, `int64`, `complex64`, `complex128`.
-* <b>`y`</b>: A `Tensor`. Must have the same type as `x`.
-* <b>`name`</b>: A name for the operation (optional).
-
-##### Returns:
-
- A `Tensor`. Has the same type as `x`.
+THIS FUNCTION IS DEPRECATED. It will be removed after 2016-12-30.
+Instructions for updating:
+`tf.sub(x, y)` is deprecated, please use `tf.subtract(x, y)` or `x - y`
diff --git a/tensorflow/g3doc/api_docs/python/math_ops.md b/tensorflow/g3doc/api_docs/python/math_ops.md
index bb85b98380..8baf5c5eff 100644
--- a/tensorflow/g3doc/api_docs/python/math_ops.md
+++ b/tensorflow/g3doc/api_docs/python/math_ops.md
@@ -3718,23 +3718,25 @@ invert_permutation(x) ==> [2, 4, 3, 0, 1]
## Other Functions and Classes
- - -
-### `tf.mul(x, y, name=None)` {#mul}
+### `tf.mul(*args, **kwargs)` {#mul}
Returns x * y element-wise.
-*NOTE*: `Mul` supports broadcasting. More about broadcasting
-[here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
-
-##### Args:
+ *NOTE*: `Mul` supports broadcasting. More about broadcasting
+ [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
+ Args:
+ x: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `uint8`, `int8`, `uint16`, `int16`, `int32`, `int64`, `complex64`, `complex128`.
+ y: A `Tensor`. Must have the same type as `x`.
+ name: A name for the operation (optional).
-* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `uint8`, `int8`, `uint16`, `int16`, `int32`, `int64`, `complex64`, `complex128`.
-* <b>`y`</b>: A `Tensor`. Must have the same type as `x`.
-* <b>`name`</b>: A name for the operation (optional).
+ Returns:
+ A `Tensor`. Has the same type as `x`.
+ DEPRECATED FUNCTION
-##### Returns:
-
- A `Tensor`. Has the same type as `x`.
+THIS FUNCTION IS DEPRECATED. It will be removed after 2016-12-30.
+Instructions for updating:
+`tf.mul(x, y)` is deprecated, please use `tf.multiply(x, y)` or `x * y`
- - -
@@ -3763,22 +3765,24 @@ I.e., \(y = -x\).
- - -
-### `tf.sub(x, y, name=None)` {#sub}
+### `tf.sub(*args, **kwargs)` {#sub}
Returns x - y element-wise.
-*NOTE*: `Sub` supports broadcasting. More about broadcasting
-[here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
-
-##### Args:
+ *NOTE*: `Sub` supports broadcasting. More about broadcasting
+ [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
+ Args:
+ x: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `int32`, `int64`, `complex64`, `complex128`.
+ y: A `Tensor`. Must have the same type as `x`.
+ name: A name for the operation (optional).
-* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `int32`, `int64`, `complex64`, `complex128`.
-* <b>`y`</b>: A `Tensor`. Must have the same type as `x`.
-* <b>`name`</b>: A name for the operation (optional).
+ Returns:
+ A `Tensor`. Has the same type as `x`.
+ DEPRECATED FUNCTION
-##### Returns:
-
- A `Tensor`. Has the same type as `x`.
+THIS FUNCTION IS DEPRECATED. It will be removed after 2016-12-30.
+Instructions for updating:
+`tf.sub(x, y)` is deprecated, please use `tf.subtract(x, y)` or `x - y`