aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-26 00:06:30 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-26 01:17:13 -0700
commit37adf1eaae7483410e09ab32d5df5a373e7e719a (patch)
tree52dfa1d111d4937c745f1430516d1c46acf7828f /tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md
parent4bf1da61839c7587b3f93a7bb5e305d6368e75bc (diff)
Update generated Python Op docs.
Change: 123295275
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md
deleted file mode 100644
index 3137d5c49e..0000000000
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.reduce_all.md
+++ /dev/null
@@ -1,35 +0,0 @@
-### `tf.reduce_all(input_tensor, reduction_indices=None, keep_dims=False, name=None)` {#reduce_all}
-
-Computes the "logical and" of elements across dimensions of a tensor.
-
-Reduces `input_tensor` along the dimensions given in `reduction_indices`.
-Unless `keep_dims` is true, the rank of the tensor is reduced by 1 for each
-entry in `reduction_indices`. If `keep_dims` is true, the reduced dimensions
-are retained with length 1.
-
-If `reduction_indices` has no entries, all dimensions are reduced, and a
-tensor with a single element is returned.
-
-For example:
-
-```python
-# 'x' is [[True, True]
-# [False, False]]
-tf.reduce_all(x) ==> False
-tf.reduce_all(x, 0) ==> [False, False]
-tf.reduce_all(x, 1) ==> [True, False]
-```
-
-##### Args:
-
-
-* <b>`input_tensor`</b>: The boolean tensor to reduce.
-* <b>`reduction_indices`</b>: The dimensions to reduce. If `None` (the default),
- reduces all dimensions.
-* <b>`keep_dims`</b>: If true, retains reduced dimensions with length 1.
-* <b>`name`</b>: A name for the operation (optional).
-
-##### Returns:
-
- The reduced tensor.
-