From 93e1c1e81e6bef29241e14c6cce625ba1b621718 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 12 Jun 2020 15:21:49 +0200 Subject: [PATCH] Export tf.math.reduce_all first This makes it consistent with other `reduce_*` symbols. --- tensorflow/python/ops/math_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/ops/math_ops.py b/tensorflow/python/ops/math_ops.py index 22830b032b4..79c74a81d80 100644 --- a/tensorflow/python/ops/math_ops.py +++ b/tensorflow/python/ops/math_ops.py @@ -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.