Home
last modified time | relevance | path

Searched refs:logical_or (Results 1 – 25 of 138) sorted by relevance

123456

/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_gpu_logical_or.cu.cc23 template struct BinaryFunctor<GPUDevice, logical_or, 1>;
24 template struct BinaryFunctor<GPUDevice, logical_or, 2>;
25 template struct BinaryFunctor<GPUDevice, logical_or, 3>;
26 template struct BinaryFunctor<GPUDevice, logical_or, 4>;
27 template struct BinaryFunctor<GPUDevice, logical_or, 5>;
Dcwise_op_logical_or.cc20 BinaryOp<CPUDevice, functor::logical_or>);
24 BinaryOp<GPUDevice, functor::logical_or>);
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/logical.operations/
Dlogical_or.pass.cpp23 typedef std::logical_or<int> F; in main()
35 typedef std::logical_or<> F2; in main()
48 constexpr bool foo = std::logical_or<int> () (36, 36); in main()
51 constexpr bool bar = std::logical_or<> () (36.0, 36); in main()
Dtransparent.pass.cpp34 static_assert ( !is_transparent<std::logical_or<int>>::value, "" ); in main()
35 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" ); in main()
36 static_assert ( is_transparent<std::logical_or<void>>::value, "" ); in main()
37 static_assert ( is_transparent<std::logical_or<>>::value, "" ); in main()
/external/libcxx/test/std/utilities/function.objects/logical.operations/
Dlogical_or.pass.cpp22 typedef std::logical_or<int> F; in main()
32 typedef std::logical_or<> F2; in main()
45 constexpr bool foo = std::logical_or<int> () (36, 36); in main()
48 constexpr bool bar = std::logical_or<> () (36.0, 36); in main()
Dtransparent.pass.cpp33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" ); in main()
34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" ); in main()
35 static_assert ( is_transparent<std::logical_or<void>>::value, "" ); in main()
36 static_assert ( is_transparent<std::logical_or<>>::value, "" ); in main()
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_LogicalOr.pbtxt4 name: "math.logical_or"
7 name: "logical_or"
29 >>> tf.math.logical_or(a, b)
36 >>> tf.math.logical_or(c, x)
43 >>> tf.math.logical_or(y, z)
50 >>> tf.logical_or([[True, False]], [[True], [False]])
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/
Dlogical.mlir48 // CHECK-NEXT: name: "logical_or",
101 %2 = "tfl.logical_or"(%arg0, %1) : (tensor<4xi1>, tensor<4xi1>) -> tensor<4xi1> loc("logical_or")
/external/OpenCL-CTS/test_conformance/subgroups/
Dtest_subgroup_non_uniform_arithmetic.cpp103 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::logical_or>>( in run_functions_logical_and_or_xor_for_type()
109 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::logical_or>>( in run_functions_logical_and_or_xor_for_type()
115 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::logical_or>>( in run_functions_logical_and_or_xor_for_type()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/function.objects/
Doperations.implicit_ctad.pass.cpp93 std::logical_or f; in main()
94 ASSERT_SAME_TYPE(decltype(f), std::logical_or<>); in main()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_operators.py58 ragged_tensor.RaggedTensor.__ror__ = _right(math_ops.logical_or)
59 ragged_tensor.RaggedTensor.__or__ = math_ops.logical_or
Dragged_tensor_test_ops.py154 math_ops.logical_or,
/external/ComputeLibrary/tests/validation/reference/
DLogical.cpp95 SimpleTensor<T> logical_or(const SimpleTensor<T> &src1, const SimpleTensor<T> &src2) in logical_or() function
135 template SimpleTensor<uint8_t> logical_or(const SimpleTensor<uint8_t> &src1, const SimpleTensor<uin…
DLogical.h38 SimpleTensor<T> logical_or(const SimpleTensor<T> &src1, const SimpleTensor<T> &src2);
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Darithmetic.cc104 XlaComputation logical_or = CreateScalarOrComputation(PRED, builder); in Any() local
109 return Reduce(predicates, f, logical_or, all_dimensions); in Any()
/external/tensorflow/tensorflow/compiler/mlir/tfrt/python_tests/
Dtf_logical_ops_test.py60 test_logical_op(logical_op_1d("LogicalOr"), np.logical_or, 1)
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dlogic.py63 return _make_logical_tests(tf.logical_or)(options, expected_tf_failures=1)
/external/armnn/src/backends/reference/workloads/
DRefLogicalBinaryWorkload.cpp53 using OrFunction = LogicalBinaryFunction<std::logical_or<bool>>; in Execute()
DElementwiseFunction.cpp99 template struct armnn::LogicalBinaryFunction<std::logical_or<bool>>;
/external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/metrics/
Dblazeface_metrics.py70 high_scoring_indices = tf.math.logical_or(
/external/cronet/buildtools/third_party/libc++/trunk/include/__functional/
Doperations.h564 struct _LIBCPP_TEMPLATE_VIS logical_or
572 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(logical_or);
576 struct _LIBCPP_TEMPLATE_VIS logical_or<void>
/external/tensorflow/tensorflow/compiler/tests/
Dspecial_math_test.py498 ~np.logical_or(np.isnan(actual_grad), np.isinf(actual_grad))]
500 ~np.logical_or(np.isnan(actual_grad), np.isinf(actual_grad))]
525 ~np.logical_or(np.isnan(actual_grad), np.isinf(actual_grad))]
527 ~np.logical_or(np.isnan(actual_grad), np.isinf(actual_grad))]
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops.py53 np_utils.logical_or(
81 return math_ops.logical_or(x1, x2)
181 return math_ops.logical_or(x1, x2)
249 np_utils.logical_or(
1034 def logical_or(x1, x2): function
1035 return _logical_binary_op(math_ops.logical_or, x1, x2)
/external/tensorflow/tensorflow/python/ops/distributions/
Duniform.py179 math_ops.logical_or(broadcasted_x < self.low,
/external/ComputeLibrary/tests/validation/fixtures/
DLogicalFixture.h127 …ryOperationValidationFixture<TensorType, AccessorType, FunctionType, T, &reference::logical_or<T>>;

123456