From: Yong Tang Date: Mon, 21 May 2018 23:36:55 +0000 (+0000) Subject: Update docstring as pow supports `float16` now X-Git-Tag: upstream/v1.9.0_rc1~78^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f72e6f7b410fd61cbcd5d6993602e1a3983a5d86;p=platform%2Fupstream%2Ftensorflow.git Update docstring as pow supports `float16` now Signed-off-by: Yong Tang --- diff --git a/tensorflow/python/ops/math_ops.py b/tensorflow/python/ops/math_ops.py index 7660c40..80351a8 100644 --- a/tensorflow/python/ops/math_ops.py +++ b/tensorflow/python/ops/math_ops.py @@ -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: