aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/math_ops.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/math_ops.py')
-rw-r--r--tensorflow/python/ops/math_ops.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/tensorflow/python/ops/math_ops.py b/tensorflow/python/ops/math_ops.py
index e40481f3a7..466d0dadc8 100644
--- a/tensorflow/python/ops/math_ops.py
+++ b/tensorflow/python/ops/math_ops.py
@@ -125,8 +125,8 @@ def abs(x, name=None): # pylint: disable=redefined-builtin
```
Args:
- x: A `Tensor` or `SparseTensor` of type `float32`, `float64`, `int32`,
- `int64`, `complex64` or `complex128`.
+ x: A `Tensor` or `SparseTensor` of type `float16`, `float32`, `float64`,
+ `int32`, `int64`, `complex64` or `complex128`.
name: A name for the operation (optional).
Returns:
@@ -430,10 +430,10 @@ def pow(x, y, name=None): # pylint: disable=redefined-builtin
```
Args:
- x: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`,
- or `complex128`.
- y: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`,
- or `complex128`.
+ x: A `Tensor` of type `float16`, `float32`, `float64`, `int32`, `int64`,
+ `complex64`, or `complex128`.
+ y: A `Tensor` of type `float16`, `float32`, `float64`, `int32`, `int64`,
+ `complex64`, or `complex128`.
name: A name for the operation (optional).
Returns:
@@ -600,7 +600,7 @@ def round(x, name=None): # pylint: disable=redefined-builtin
```
Args:
- x: A `Tensor` of type `float32` or `float64`.
+ x: A `Tensor` of type `float16`, `float32`, `float64`, `int32`, or `int64`.
name: A name for the operation (optional).
Returns:
@@ -1257,7 +1257,7 @@ def reduce_sum(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
For example:
@@ -1397,7 +1397,7 @@ def reduce_mean(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
For example:
@@ -1469,7 +1469,7 @@ def reduce_prod(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
Args:
@@ -1519,7 +1519,7 @@ def reduce_min(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
Args:
@@ -1568,7 +1568,7 @@ def reduce_max(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
Args:
@@ -1617,7 +1617,7 @@ def reduce_all(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
For example:
@@ -1675,7 +1675,7 @@ def reduce_any(input_tensor,
entry in `axis`. If `keepdims` is true, the reduced dimensions
are retained with length 1.
- If `axis` has no entries, all dimensions are reduced, and a
+ If `axis` is None, all dimensions are reduced, and a
tensor with a single element is returned.
For example: