Export tf.math.reduce_all first

This makes it consistent with other `reduce_*` symbols.
This commit is contained in:
Guillaume Klein 2020-06-12 15:21:49 +02:00 committed by GitHub
parent bd361bfaf9
commit 93e1c1e81e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2752,7 +2752,7 @@ def reduce_all_v1(input_tensor,
return reduce_all(input_tensor, axis, keepdims, name)
@tf_export("reduce_all", "math.reduce_all", v1=[])
@tf_export("math.reduce_all", "reduce_all", v1=[])
@dispatch.add_dispatch_support
def reduce_all(input_tensor, axis=None, keepdims=False, name=None):
"""Computes the "logical and" of elements across dimensions of a tensor.