From 4994af33fd8d79402d581e5f35be0f796e8028c1 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 24 Jun 2016 07:40:20 -0800 Subject: [PATCH] Update generated Python Op docs. Change: 125783676 --- .../functions_and_classes/shard2/tf.imag.md | 4 +-- .../functions_and_classes/shard2/tf.matmul.md | 4 +-- .../functions_and_classes/shard2/tf.real.md | 4 +-- .../shard3/tf.complex_abs.md | 2 +- .../functions_and_classes/shard6/tf.abs.md | 2 +- .../functions_and_classes/shard6/tf.pow.md | 8 +++--- .../shard6/tf.sigmoid.md | 2 +- .../functions_and_classes/shard8/tf.round.md | 2 +- .../functions_and_classes/shard9/tf.tanh.md | 2 +- tensorflow/g3doc/api_docs/python/math_ops.md | 26 +++++++++---------- tensorflow/g3doc/api_docs/python/nn.md | 4 +-- 11 files changed, 30 insertions(+), 30 deletions(-) diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.imag.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.imag.md index 1dfcadbb957..3df72723cf9 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.imag.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.imag.md @@ -3,7 +3,7 @@ Returns the imaginary part of a complex number. Given a tensor `input` of complex numbers, this operation returns a tensor of -type `float` or `double` that is the imaginary part of each element in +type `float32` or `float64` that is the imaginary part of each element in `input`. All elements in `input` must be complex numbers of the form \(a + bj\), where *a* is the real part and *b* is the imaginary part returned by this operation. @@ -23,5 +23,5 @@ tf.imag(input) ==> [4.75, 5.75] ##### Returns: - A `Tensor` of type `float` or `double`. + A `Tensor` of type `float32` or `float64`. 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 6602562ecc5..ec289a77d4c 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 @@ -6,7 +6,7 @@ The inputs must be two-dimensional matrices, with matching inner dimensions, possibly after transposition. Both matrices must be of the same type. The supported types are: -`float`, `double`, `int32`, `complex64`. +`float32`, `float64`, `int32`, `complex64`. Either matrix can be transposed on the fly by setting the corresponding flag to `True`. This is `False` by default. @@ -32,7 +32,7 @@ c = tf.matmul(a, b) => [[58 64] ##### Args: -* `a`: `Tensor` of type `float`, `double`, `int32` or `complex64`. +* `a`: `Tensor` of type `float32`, `float64`, `int32` or `complex64`. * `b`: `Tensor` with same type as `a`. * `transpose_a`: If `True`, `a` is transposed before multiplication. * `transpose_b`: If `True`, `b` is transposed before multiplication. diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.real.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.real.md index 3be066f588c..993fddd96ee 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.real.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard2/tf.real.md @@ -3,7 +3,7 @@ Returns the real part of a complex number. Given a tensor `input` of complex numbers, this operation returns a tensor of -type `float` or `double` that is the real part of each element in `input`. +type `float32` or `float64` that is the real part of each element in `input`. All elements in `input` must be complex numbers of the form \(a + bj\), where *a* is the real part returned by this operation and *b* is the imaginary part. @@ -24,5 +24,5 @@ tf.real(input) ==> [-2.25, 3.25] ##### Returns: - A `Tensor` of type `float` or `double`. + A `Tensor` of type `float32` or `float64`. diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard3/tf.complex_abs.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard3/tf.complex_abs.md index 1cb76668d64..c757f73a617 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard3/tf.complex_abs.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard3/tf.complex_abs.md @@ -3,7 +3,7 @@ Computes the complex absolute value of a tensor. Given a tensor `x` of complex numbers, this operation returns a tensor of type -`float` or `double` that is the absolute value of each element in `x`. All +`float32` or `float64` that is the absolute value of each element in `x`. All elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute value is computed as \\( \sqrt{a^2 + b^2}\\). diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.abs.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.abs.md index fc0d0f723db..58c7d0521fd 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.abs.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.abs.md @@ -13,7 +13,7 @@ number. ##### Args: -* `x`: A `Tensor` or `SparseTensor` of type `float`, `double`, `int32`, or +* `x`: A `Tensor` or `SparseTensor` of type `float32`, `float64`, `int32`, or `int64`. * `name`: A name for the operation (optional). diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.pow.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.pow.md index 7f88cccb30a..fbb53fc9a1d 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.pow.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.pow.md @@ -14,10 +14,10 @@ tf.pow(x, y) ==> [[256, 65536], [9, 27]] ##### Args: -* `x`: A `Tensor` of type `float`, `double`, `int32`, `int64`, `complex64`, or - `complex128`. -* `y`: A `Tensor` of type `float`, `double`, `int32`, `int64`, `complex64`, or - `complex128`. +* `x`: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`, + or `complex128`. +* `y`: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`, + or `complex128`. * `name`: A name for the operation (optional). ##### Returns: diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.sigmoid.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.sigmoid.md index b056a487165..bdb0e7e49b1 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.sigmoid.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard6/tf.sigmoid.md @@ -7,7 +7,7 @@ Specifically, `y = 1 / (1 + exp(-x))`. ##### Args: -* `x`: A Tensor with type `float`, `double`, `int32`, `complex64`, `int64`, +* `x`: A Tensor with type `float32`, `float64`, `int32`, `complex64`, `int64`, or `qint32`. * `name`: A name for the operation (optional). diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.round.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.round.md index 8d2ce329216..e408991b521 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.round.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.round.md @@ -12,7 +12,7 @@ tf.round(a) ==> [ 1.0, 3.0, 2.0, -4.0 ] ##### Args: -* `x`: A `Tensor` of type `float` or `double`. +* `x`: A `Tensor` of type `float32` or `float64`. * `name`: A name for the operation (optional). ##### Returns: diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.tanh.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.tanh.md index b41e51c0194..6f42cfdc2f0 100644 --- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.tanh.md +++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.tanh.md @@ -5,7 +5,7 @@ Computes hyperbolic tangent of `x` element-wise. ##### Args: -* `x`: A Tensor with type `float`, `double`, `int32`, `complex64`, `int64`, +* `x`: A Tensor with type `float32`, `float64`, `int32`, `complex64`, `int64`, or `qint32`. * `name`: A name for the operation (optional). diff --git a/tensorflow/g3doc/api_docs/python/math_ops.md b/tensorflow/g3doc/api_docs/python/math_ops.md index da15bc8ebfe..fb5a4665c12 100644 --- a/tensorflow/g3doc/api_docs/python/math_ops.md +++ b/tensorflow/g3doc/api_docs/python/math_ops.md @@ -244,7 +244,7 @@ number. ##### Args: -* `x`: A `Tensor` or `SparseTensor` of type `float`, `double`, `int32`, or +* `x`: A `Tensor` or `SparseTensor` of type `float32`, `float64`, `int32`, or `int64`. * `name`: A name for the operation (optional). @@ -350,7 +350,7 @@ tf.round(a) ==> [ 1.0, 3.0, 2.0, -4.0 ] ##### Args: -* `x`: A `Tensor` of type `float` or `double`. +* `x`: A `Tensor` of type `float32` or `float64`. * `name`: A name for the operation (optional). ##### Returns: @@ -414,10 +414,10 @@ tf.pow(x, y) ==> [[256, 65536], [9, 27]] ##### Args: -* `x`: A `Tensor` of type `float`, `double`, `int32`, `int64`, `complex64`, or - `complex128`. -* `y`: A `Tensor` of type `float`, `double`, `int32`, `int64`, `complex64`, or - `complex128`. +* `x`: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`, + or `complex128`. +* `y`: A `Tensor` of type `float32`, `float64`, `int32`, `int64`, `complex64`, + or `complex128`. * `name`: A name for the operation (optional). ##### Returns: @@ -1200,7 +1200,7 @@ The inputs must be two-dimensional matrices, with matching inner dimensions, possibly after transposition. Both matrices must be of the same type. The supported types are: -`float`, `double`, `int32`, `complex64`. +`float32`, `float64`, `int32`, `complex64`. Either matrix can be transposed on the fly by setting the corresponding flag to `True`. This is `False` by default. @@ -1226,7 +1226,7 @@ c = tf.matmul(a, b) => [[58 64] ##### Args: -* `a`: `Tensor` of type `float`, `double`, `int32` or `complex64`. +* `a`: `Tensor` of type `float32`, `float64`, `int32` or `complex64`. * `b`: `Tensor` with same type as `a`. * `transpose_a`: If `True`, `a` is transposed before multiplication. * `transpose_b`: If `True`, `b` is transposed before multiplication. @@ -1854,7 +1854,7 @@ tf.complex(real, imag) ==> [[2.25 + 4.75j], [3.25 + 5.75j]] Computes the complex absolute value of a tensor. Given a tensor `x` of complex numbers, this operation returns a tensor of type -`float` or `double` that is the absolute value of each element in `x`. All +`float32` or `float64` that is the absolute value of each element in `x`. All elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute value is computed as \\( \sqrt{a^2 + b^2}\\). @@ -1914,7 +1914,7 @@ tf.conj(input) ==> [-2.25 - 4.75j, 3.25 - 5.75j] Returns the imaginary part of a complex number. Given a tensor `input` of complex numbers, this operation returns a tensor of -type `float` or `double` that is the imaginary part of each element in +type `float32` or `float64` that is the imaginary part of each element in `input`. All elements in `input` must be complex numbers of the form \(a + bj\), where *a* is the real part and *b* is the imaginary part returned by this operation. @@ -1934,7 +1934,7 @@ tf.imag(input) ==> [4.75, 5.75] ##### Returns: - A `Tensor` of type `float` or `double`. + A `Tensor` of type `float32` or `float64`. - - - @@ -1944,7 +1944,7 @@ tf.imag(input) ==> [4.75, 5.75] Returns the real part of a complex number. Given a tensor `input` of complex numbers, this operation returns a tensor of -type `float` or `double` that is the real part of each element in `input`. +type `float32` or `float64` that is the real part of each element in `input`. All elements in `input` must be complex numbers of the form \(a + bj\), where *a* is the real part returned by this operation and *b* is the imaginary part. @@ -1965,7 +1965,7 @@ tf.real(input) ==> [-2.25, 3.25] ##### Returns: - A `Tensor` of type `float` or `double`. + A `Tensor` of type `float32` or `float64`. - - - diff --git a/tensorflow/g3doc/api_docs/python/nn.md b/tensorflow/g3doc/api_docs/python/nn.md index d1703f11429..630f0c4e67b 100644 --- a/tensorflow/g3doc/api_docs/python/nn.md +++ b/tensorflow/g3doc/api_docs/python/nn.md @@ -186,7 +186,7 @@ Specifically, `y = 1 / (1 + exp(-x))`. ##### Args: -* `x`: A Tensor with type `float`, `double`, `int32`, `complex64`, `int64`, +* `x`: A Tensor with type `float32`, `float64`, `int32`, `complex64`, `int64`, or `qint32`. * `name`: A name for the operation (optional). @@ -205,7 +205,7 @@ Computes hyperbolic tangent of `x` element-wise. ##### Args: -* `x`: A Tensor with type `float`, `double`, `int32`, `complex64`, `int64`, +* `x`: A Tensor with type `float32`, `float64`, `int32`, `complex64`, `int64`, or `qint32`. * `name`: A name for the operation (optional). -- GitLab