Home
last modified time | relevance | path

Searched refs:logical_and (Results 1 – 25 of 124) sorted by relevance

12345

/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_gpu_logical_and.cu.cc22 template struct BinaryFunctor<GPUDevice, logical_and, 1>;
23 template struct BinaryFunctor<GPUDevice, logical_and, 2>;
24 template struct BinaryFunctor<GPUDevice, logical_and, 3>;
25 template struct BinaryFunctor<GPUDevice, logical_and, 4>;
26 template struct BinaryFunctor<GPUDevice, logical_and, 5>;
Dcwise_op_logical_and.cc20 BinaryOp<CPUDevice, functor::logical_and>);
23 BinaryOp<GPUDevice, functor::logical_and>);
/external/libcxx/test/std/utilities/function.objects/logical.operations/
Dlogical_and.pass.cpp22 typedef std::logical_and<int> F; in main()
32 typedef std::logical_and<> F2; in main()
46 constexpr bool foo = std::logical_and<int> () (36, 36); in main()
49 constexpr bool bar = std::logical_and<> () (36.0, 36); in main()
Dtransparent.pass.cpp28 static_assert ( !is_transparent<std::logical_and<int>>::value, "" ); in main()
29 static_assert ( !is_transparent<std::logical_and<std::string>>::value, "" ); in main()
30 static_assert ( is_transparent<std::logical_and<void>>::value, "" ); in main()
31 static_assert ( is_transparent<std::logical_and<>>::value, "" ); in main()
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_LogicalAnd.pbtxt4 name: "math.logical_and"
7 name: "logical_and"
/external/libcxx/test/std/utilities/function.objects/negators/
Dbinary_negate.pass.cpp20 typedef std::binary_negate<std::logical_and<int> > F; in main()
21 const F f = F(std::logical_and<int>()); in main()
Dnot2.pass.cpp19 typedef std::logical_and<int> F; in main()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_operators.py42 ragged_tensor.RaggedTensor.__and__ = math_ops.logical_and
43 ragged_tensor.RaggedTensor.__rand__ = _right(math_ops.logical_and)
/external/tensorflow/tensorflow/contrib/opt/python/training/
Dmatrix_functions.py47 return math_ops.logical_and(i < iter_count, err < old_err)
127 return math_ops.logical_and(
/external/tensorflow/tensorflow/contrib/labeled_tensor/
D__init__.py91 logical_and = _core.logical_and variable
/external/tensorflow/tensorflow/contrib/sparsemax/python/ops/
Dsparsemax_loss.py73 math_ops.logical_and(math_ops.equal(labels, 0), math_ops.is_inf(z)),
/external/tensorflow/tensorflow/python/data/util/
Drandom_seed.py53 math_ops.logical_and(
/external/tensorflow/tensorflow/python/ops/
Dmetrics_impl.py577 math_ops.logical_and(label_is_pos, pred_is_pos), dtypes.float32)
589 math_ops.logical_and(label_is_pos, pred_is_neg), dtypes.float32)
601 math_ops.logical_and(label_is_neg, pred_is_neg), dtypes.float32)
613 math_ops.logical_and(label_is_neg, pred_is_pos), dtypes.float32)
767 math_ops.logical_and(p[:num_thresholds - 1] > 0, p[1:] > 0),
1539 is_false_negative = math_ops.logical_and(
1648 is_false_positive = math_ops.logical_and(
1757 is_true_negative = math_ops.logical_and(
1866 is_true_positive = math_ops.logical_and(
/external/tensorflow/tensorflow/contrib/solvers/python/ops/
Dleast_squares.py81 return math_ops.logical_and(i < max_iter, state.gamma > tol)
Dlinear_equations.py87 return math_ops.logical_and(i < max_iter, linalg_ops.norm(state.r) > tol)
/external/tensorflow/tensorflow/contrib/constrained_optimization/python/
Dswap_regret_optimizer.py96 return standard_ops.logical_and(not_done, not_converged)
169 return standard_ops.logical_and(not_done, not_converged)
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
Dperiodic.py430 return math_ops.logical_and(
524 ones_mask = math_ops.logical_and(ones_mask_vector[..., None],
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/batch/
Dordinal_split_handler.py632 math_ops.logical_and(
633 math_ops.logical_and(are_buckets_ready,
730 math_ops.logical_and(are_buckets_ready,
/external/tensorflow/tensorflow/lite/kernels/
Dlogical.cc109 const auto logical_and_func = std::logical_and<bool>(); in LogicalAndEval()
/external/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py183 logical_and = _broadcasting_binary_op(math_ops.logical_and) variable
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_test.py249 self._compareBinary(x, y, np.logical_and, math_ops.logical_and,
260 self._compareBinary(x, y, np.logical_and, math_ops.logical_and, use_gpu)
282 self._compareBinary(x, y, np.logical_and, math_ops.logical_and, 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),
/external/tensorflow/tensorflow/contrib/model_pruning/python/
Dpruning.py537 is_step_within_pruning_range = math_ops.logical_and(
548 return math_ops.logical_and(is_step_within_pruning_range,
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format.py544 ("-", np.sum(np.logical_and(
547 ("+", np.sum(np.logical_and(
/external/eigen/Eigen/src/Core/functors/
DStlFunctors.h44 struct functor_traits<std::logical_and<T> >
/external/tensorflow/tensorflow/contrib/metrics/python/ops/
Dmetric_ops.py790 math_ops.logical_and(label_is_pos, pred_is_pos), dtypes.float32)
802 math_ops.logical_and(label_is_pos, pred_is_neg), dtypes.float32)
814 math_ops.logical_and(label_is_neg, pred_is_neg), dtypes.float32)
826 math_ops.logical_and(label_is_neg, pred_is_pos), dtypes.float32)
1497 all_labels_positive_or_0 = math_ops.logical_and(
1501 is_valid = math_ops.logical_and(all_labels_positive_or_0,

12345