/external/tensorflow/tensorflow/core/kernels/ |
cwise_op_gpu_logical_or.cu.cc | 22 template struct BinaryFunctor<GPUDevice, logical_or, 1>; 23 template struct BinaryFunctor<GPUDevice, logical_or, 2>; 24 template struct BinaryFunctor<GPUDevice, logical_or, 3>; 25 template struct BinaryFunctor<GPUDevice, logical_or, 4>; 26 template struct BinaryFunctor<GPUDevice, logical_or, 5>;
|
cwise_op_logical_or.cc | 20 BinaryOp<CPUDevice, functor::logical_or>); 23 BinaryOp<GPUDevice, functor::logical_or>);
|
/external/libcxx/test/std/utilities/function.objects/logical.operations/ |
logical_or.pass.cpp | 12 // logical_or 22 typedef std::logical_or<int> F; 32 typedef std::logical_or<> F2; 45 constexpr bool foo = std::logical_or<int> () (36, 36); 48 constexpr bool bar = std::logical_or<> () (36.0, 36);
|
transparent.pass.cpp | 33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" ); 34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" ); 35 static_assert ( is_transparent<std::logical_or<void>>::value, "" ); 36 static_assert ( is_transparent<std::logical_or<>>::value, "" );
|
/external/tensorflow/tensorflow/contrib/image/python/ops/ |
sparse_image_warp.py | 51 is_boundary = np.logical_or( 52 np.logical_or(xs == 0, xs == image_width - 1), 53 np.logical_or(ys == 0, ys == image_height - 1))
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
ragged_operators.py | 45 ragged_tensor.RaggedTensor.__ror__ = _right(math_ops.logical_or) 46 ragged_tensor.RaggedTensor.__or__ = math_ops.logical_or
|
/external/tensorflow/tensorflow/contrib/sparsemax/python/ops/ |
sparsemax_loss.py | 61 math_ops.logical_or(sparsemax > 0, math_ops.is_nan(sparsemax)),
|
sparsemax.py | 89 math_ops.logical_or(
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
arithmetic.cc | 117 XlaComputation logical_or = CreateScalarOrComputation(PRED, builder); 122 return Reduce(predicates, f, logical_or, all_dimensions);
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/ |
__init__.py | 92 logical_or = _core.logical_or variable
|
/external/eigen/Eigen/src/Core/functors/ |
StlFunctors.h | 40 struct functor_traits<std::logical_or<T> >
|
/external/tensorflow/tensorflow/lite/kernels/ |
logical.cc | 104 const auto logical_or_func = std::logical_or<bool>();
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
xla.py | 184 logical_or = _broadcasting_binary_op(math_ops.logical_or) variable
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
decoder.py | 349 initial_finished = math_ops.logical_or( 402 next_finished = math_ops.logical_or(decoder_finished, finished)
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
mixture_same_family_test.py | 72 np.ones_like(x_, dtype=np.bool), np.logical_or(x_ == 0., x_ == 1.))
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
uniform.py | 184 math_ops.logical_or(broadcasted_x < self.low,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_decimal.py | 177 'or':'logical_or',
[all...] |
/external/tensorflow/tensorflow/python/kernel_tests/ |
cwise_ops_test.py | 251 self._compareBinary(x, y, np.logical_or, math_ops.logical_or, use_gpu) 261 self._compareBinary(x, y, np.logical_or, math_ops.logical_or, use_gpu) 283 self._compareBinary(x, y, np.logical_or, math_ops.logical_or, use_gpu) 290 for f in [math_ops.logical_and, math_ops.logical_or, math_ops.logical_xor]: 719 logical_funcs = [(np.logical_and, _AND), (np.logical_or, _OR), [all...] |
/external/tensorflow/tensorflow/contrib/framework/python/framework/ |
tensor_util.py | 147 math_ops.logical_or(
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/ |
attention_wrapper_test.py | 739 self.assertTrue(np.all(np.logical_or(attn_out == 0, attn_out == 1))) 741 self.assertTrue(np.all(np.logical_or(attn_out.sum(axis=1) == 1, [all...] |
/external/tensorflow/tensorflow/contrib/training/python/training/ |
sampling_ops.py | 220 math_ops.logical_or(
|
/external/tensorflow/tensorflow/python/debug/cli/ |
cli_shared.py | 131 r = np.logical_or(r, np.logical_and(x >= range_start, x <= range_end))
|
/external/tensorflow/tensorflow/python/ops/ |
clip_ops.py | 103 xgrad = array_ops.where(math_ops.logical_or(xymask, xzmask), zeros, grad)
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/ |
core.py | 456 return logical_or(self, other) 1190 logical_or = define_binary_op('logical_or', math_ops.logical_or) variable [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
algebraic_simplifier.cc | 218 Status HandleOr(HloInstruction* logical_or) override; [all...] |