fixed Build failures pt2
This commit is contained in:
parent
eb234e5b7c
commit
875936191c
@ -537,7 +537,7 @@ def subtract(x, y, name=None):
|
|||||||
|
|
||||||
*Note*: Subtract supports broadcasting. More about broadcasting
|
*Note*: Subtract supports broadcasting. More about broadcasting
|
||||||
[here](https://numpy.org/doc/stable/user/basics.broadcasting.html)
|
[here](https://numpy.org/doc/stable/user/basics.broadcasting.html)
|
||||||
|
|
||||||
Both input and output have a range `(-inf, inf)`.
|
Both input and output have a range `(-inf, inf)`.
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
@ -4985,7 +4985,7 @@ def add(x, y, name=None):
|
|||||||
Returns:
|
Returns:
|
||||||
A `Tensor`. Has the same type as x.
|
A `Tensor`. Has the same type as x.
|
||||||
"""
|
"""
|
||||||
return gen_math_ops.add(x,y,name)
|
return gen_math_ops.add(x, y, name)
|
||||||
|
|
||||||
|
|
||||||
@tf_export("math.acos", v1=["math.acos", "acos"])
|
@tf_export("math.acos", v1=["math.acos", "acos"])
|
||||||
@ -5016,7 +5016,7 @@ def acos(x, name=None):
|
|||||||
Returns:
|
Returns:
|
||||||
A `Tensor`. Has the same type as x.
|
A `Tensor`. Has the same type as x.
|
||||||
"""
|
"""
|
||||||
return gen_math_ops.acos(x,name)
|
return gen_math_ops.acos(x, name)
|
||||||
|
|
||||||
|
|
||||||
@tf_export("math.floor", v1=["math.floor", "floor"])
|
@tf_export("math.floor", v1=["math.floor", "floor"])
|
||||||
@ -5042,4 +5042,4 @@ def floor(x, name=None):
|
|||||||
Returns:
|
Returns:
|
||||||
A `Tensor`. Has the same type as x.
|
A `Tensor`. Has the same type as x.
|
||||||
"""
|
"""
|
||||||
return gen_math_ops.floor(x,name)
|
return gen_math_ops.floor(x, name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user