Home
last modified time | relevance | path

Searched refs:reduce_all (Results 1 – 25 of 52) sorted by relevance

123

/external/tensorflow/tensorflow/python/ops/
Dcheck_ops.py455 condition = math_ops.reduce_all(eq)
506 condition = math_ops.reduce_all(math_ops.equal(x, y))
592 condition = math_ops.reduce_all(math_ops.not_equal(x, y))
716 condition = math_ops.reduce_all(math_ops.less(diff, tol))
791 condition = math_ops.reduce_all(math_ops.less(x, y))
867 condition = math_ops.reduce_all(math_ops.less_equal(x, y))
942 condition = math_ops.reduce_all(math_ops.greater(x, y))
1022 condition = math_ops.reduce_all(math_ops.greater_equal(x, y))
1582 return math_ops.reduce_all(math_ops.less_equal(zero, diff))
1617 return math_ops.reduce_all(math_ops.less(zero, diff))
Drandom_ops.py317 math_ops.reduce_all(shape >= size),
/external/tensorflow/tensorflow/contrib/mixed_precision/python/
Dloss_scale_optimizer.py150 is_finite_grad.append(math_ops.reduce_all(gen_math_ops.is_finite(g)))
151 is_overall_finite = math_ops.reduce_all(is_finite_grad)
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
Dsampler.py252 all_finished = math_ops.reduce_all(finished)
268 all_finished = math_ops.reduce_all(finished)
370 all_finished = math_ops.reduce_all(finished)
485 all_finished = math_ops.reduce_all(finished)
579 all_finished = math_ops.reduce_all(finished)
Dhelper.py288 all_finished = math_ops.reduce_all(finished)
306 all_finished = math_ops.reduce_all(finished)
410 all_finished = math_ops.reduce_all(finished)
546 all_finished = math_ops.reduce_all(finished)
622 all_finished = math_ops.reduce_all(finished)
Ddecoder.py379 return math_ops.logical_not(math_ops.reduce_all(finished))
/external/tensorflow/tensorflow/contrib/labeled_tensor/
D__init__.py124 reduce_all = _ops.reduce_all variable
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_ops_test.py222 self.assertTrue(session.run(tf.reduce_all(tf.equal(rank_tensor, i))),
257 self.assertTrue(session.run(tf.reduce_all(tf.equal(rank_tensor, i))),
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_reduce_op_test.py132 ragged_reduce_op=ragged_math_ops.reduce_all,
137 ragged_reduce_op=ragged_math_ops.reduce_all,
Dragged_dispatch.py402 math_ops.reduce_all,
461 (math_ops.reduce_all, ragged_math_ops.reduce_all, ['input_tensor']),
Dragged_math_ops.py552 def reduce_all(input_tensor, axis=None, keepdims=None, name=None): function
589 _set_ragged_reduce_docstring(reduce_all, 'logical and', 'and-ed', 'True',
Dragged_tensor.py1165 lambda: math_ops.reduce_all(has_default_value, axis=reduce_axis),
1658 math_ops.reduce_all(math_ops.equal(index_suffix[:1], 0)),
1659 math_ops.reduce_all(index_ok))
/external/tensorflow/tensorflow/tools/compatibility/testdata/
Dtest_file_v0_11.py50 tf.reduce_all(
53 tf.reduce_all(
/external/tensorflow/tensorflow/lite/experimental/examples/lstm/
Drnn.py245 math_ops.reduce_all(math_ops.equal(x_shape, packed_shape)), [
/external/tensorflow/tensorflow/contrib/integrate/python/ops/
Dodes.py277 math_ops.reduce_all(t[1:] > t[:-1]), ['`t` must be monotonic increasing'])
343 math_ops.reduce_all(math_ops.is_finite(abs(y0))),
/external/tensorflow/tensorflow/contrib/training/python/training/
Dsampling_ops.py219 math_ops.reduce_all(
/external/tensorflow/tensorflow/python/ops/distributions/
Ddirichlet.py297 math_ops.reduce_all(self.concentration > 1., axis=-1),
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
Ddeterministic.py416 math_ops.reduce_all(math_ops.abs(x - self.loc) <= self._slack, axis=-1),
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dbatching.py255 condition = math_ops.reduce_all(
317 condition = math_ops.reduce_all(
/external/tensorflow/tensorflow/contrib/framework/python/framework/
Dtensor_util.py146 return math_ops.reduce_all(
/external/tensorflow/tensorflow/python/kernel_tests/
Dreduction_ops_test_big.py43 return math_ops.reduce_all(x, reduction_axes, keepdims)
/external/tensorflow/tensorflow/compiler/tests/
Dreduce_ops_test.py163 self._testReduction(math_ops.reduce_all, np.all, np.bool, self.BOOL_DATA,
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
Dstate_space_model.py403 math_ops.reduce_all(math_ops.equal(current_times, previous_times)),
460 math_ops.reduce_all(math_ops.less_equal(current_times, previous_times)),
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
Dops_test.py762 result_lt = ops.reduce_all(self.bool_lt, {'channel'})
766 result_lt = ops.reduce_all(self.bool_lt, {'channel'})
768 math_ops.reduce_all(self.bool_tensor, 1), [self.a0, self.a2, self.a3])
/external/tensorflow/tensorflow/contrib/factorization/python/ops/
Dwals.py271 is_sweep_done = math_ops.reduce_all(processed_items)

123