/external/OpenCL-CTS/test_conformance/subgroups/ |
D | test_subgroup_non_uniform_arithmetic.cpp | 105 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::logical_xor>>( in run_functions_logical_and_or_xor_for_type() 111 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::logical_xor>>( in run_functions_logical_and_or_xor_for_type() 117 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::logical_xor>>( in run_functions_logical_and_or_xor_for_type()
|
D | test_subgroup_clustered_reduce.cpp | 176 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::logical_xor>>( in run_cluster_logical_and_or_xor_for_type()
|
D | subgroup_common_templates.h | 323 case ArithmeticOp::logical_xor: return !a ^ !b; in calculate() 454 || operation == ArithmeticOp::logical_xor) in generate_inputs()
|
D | subhelpers.h | 270 logical_xor enumerator 286 case ArithmeticOp::logical_xor: return "logical_xor"; in operation_names() 554 case ArithmeticOp::logical_xor: return (cl_int)0;
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_operators.py | 60 ragged_tensor.RaggedTensor.__xor__ = math_ops.logical_xor 61 ragged_tensor.RaggedTensor.__rxor__ = _right(math_ops.logical_xor)
|
D | ragged_tensor_test_ops.py | 155 math_ops.logical_xor,
|
/external/tensorflow/tensorflow/lite/testing/op_tests/ |
D | logic.py | 75 return _make_logical_tests(tf.math.logical_xor)(
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 1642 self.assertEqual(Decimal(10101).logical_xor(1001), 1643 Decimal(10101).logical_xor(Decimal(1001))) 2013 d = c.logical_xor(Decimal(1), Decimal(1)) 2014 self.assertEqual(c.logical_xor(1, 1), d) 2015 self.assertEqual(c.logical_xor(Decimal(1), 1), d) 2016 self.assertEqual(c.logical_xor(1, Decimal(1)), d) 2017 self.assertRaises(TypeError, c.logical_xor, '1', 1) 2018 self.assertRaises(TypeError, c.logical_xor, 1, '1')
|
/external/tensorflow/tensorflow/python/kernel_tests/math_ops/ |
D | cwise_ops_test.py | 256 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, 267 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, use_gpu) 291 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, 298 for f in [math_ops.logical_and, math_ops.logical_or, math_ops.logical_xor]: 934 (np.logical_xor, _XOR), (np.equal, math_ops.equal),
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
D | xla.py | 193 logical_xor = _broadcasting_binary_op(math_ops.logical_xor) variable
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 2292 ans = str(x.logical_xor(101, context=None)) 2294 self.assertRaises(InvalidOperation, x.logical_xor, 123, context=None) 2429 self.assertEqual(Decimal(10101).logical_xor(1001), 2430 Decimal(10101).logical_xor(Decimal(1001))) 2749 self.assertEqual(D('01').logical_xor(D('10'), context=xc), 1) 3270 d = c.logical_xor(Decimal(1), Decimal(1)) 3271 self.assertEqual(c.logical_xor(1, 1), d) 3272 self.assertEqual(c.logical_xor(Decimal(1), 1), d) 3273 self.assertEqual(c.logical_xor(1, Decimal(1)), d) 3274 self.assertRaises(TypeError, c.logical_xor, '1', 1) [all …]
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_math_ops.py | 1039 def logical_xor(x1, x2): function 1040 return _logical_binary_op(math_ops.logical_xor, x1, x2)
|
/external/tensorflow/tensorflow/lite/testing/ |
D | build_def.bzl | 91 "logical_xor",
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 3401 return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0), 3421 def logical_xor(self, other, context=None): member in Decimal 4811 def logical_xor(self, a, b): member in Context 4836 return a.logical_xor(b, context=self)
|
/external/python/cpython2/Lib/ |
D | decimal.py | 3295 return self.logical_xor(_dec_from_triple(0,'1'*context.prec,0), 3315 def logical_xor(self, other, context=None): member in Decimal 4635 def logical_xor(self, a, b): member in Context 4660 return a.logical_xor(b, context=self)
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | math_test.py | 156 math_ops.logical_and, math_ops.logical_or, math_ops.logical_xor
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 280 name: "logical_xor"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 280 name: "logical_xor"
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 700 .. method:: logical_xor(other[, context]) 702 :meth:`logical_xor` is a logical operation which takes two *logical 925 and :meth:`logical_xor` methods expect their arguments to be *logical 1306 .. method:: logical_xor(x, y)
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16_test.py | 382 np.greater_equal, np.logical_and, np.logical_or, np.logical_xor
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 694 .. method:: logical_xor(other, context=None) 696 :meth:`logical_xor` is a logical operation which takes two *logical 895 and :meth:`logical_xor` methods expect their arguments to be *logical 1283 .. method:: logical_xor(x, y)
|
/external/tensorflow/tensorflow/python/ops/ |
D | math_ops.py | 1794 def logical_xor(x, y, name="LogicalXor"): function 1856 return logical_xor(x, y, name)
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/include/mlir-hlo/Dialect/mhlo/IR/ |
D | chlo_ops.td | 357 Returns `logical_xor(lhs, rhs)` element-wise.
|
/external/tensorflow/third_party/py/numpy/tf_numpy_api/ |
D | tensorflow.experimental.numpy.pbtxt | 600 name: "logical_xor"
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/dialect/ |
D | ChloOps.td | 360 Returns `logical_xor(lhs, rhs)` element-wise.
|