/external/OpenCL-CTS/test_conformance/subgroups/ |
D | test_subgroup_non_uniform_arithmetic.cpp | 413 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::logical_xor>>( in run_functions_logical_and_or_xor_for_type() 419 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::logical_xor>>( in run_functions_logical_and_or_xor_for_type() 425 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 | 296 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::logical_xor>>( in run_cluster_logical_and_or_xor_for_type()
|
D | subhelpers.h | 106 logical_xor enumerator 122 case ArithmeticOp::logical_xor: return "logical_xor"; in operation_names() 388 case ArithmeticOp::logical_xor: return (cl_int)0;
|
D | subgroup_common_templates.h | 322 case ArithmeticOp::logical_xor: return !a ^ !b; in calculate() 423 || operation == ArithmeticOp::logical_xor) in genrand()
|
/external/tensorflow/tensorflow/python/ops/ragged/ |
D | ragged_operators.py | 64 ragged_tensor.RaggedTensor.__xor__ = math_ops.logical_xor 65 ragged_tensor.RaggedTensor.__rxor__ = _right(math_ops.logical_xor)
|
D | ragged_tensor_test_ops.py | 111 math_ops.logical_xor,
|
D | ragged_dispatch.py | 383 math_ops.logical_xor,
|
/external/tensorflow/tensorflow/lite/testing/op_tests/ |
D | logic.py | 79 return _make_logical_tests(tf.math.logical_xor)(
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
D | xla.py | 193 logical_xor = _broadcasting_binary_op(math_ops.logical_xor) variable
|
/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/ |
D | cwise_ops_test.py | 262 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, 273 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, use_gpu) 297 self._compareBinary(x, y, np.logical_xor, math_ops.logical_xor, 304 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/llvm-project/mlir/test/Dialect/Tosa/ |
D | ops.mlir | 155 // CHECK-LABEL: logical_xor 157 …%0 = "tosa.logical_xor"(%arg0, %arg1) : (tensor<13x1x3xi1>, tensor<13x21x3xi1>) -> tensor<13x21x3x…
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 2275 ans = str(x.logical_xor(101, context=None)) 2277 self.assertRaises(InvalidOperation, x.logical_xor, 123, context=None) 2412 self.assertEqual(Decimal(10101).logical_xor(1001), 2413 Decimal(10101).logical_xor(Decimal(1001))) 2732 self.assertEqual(D('01').logical_xor(D('10'), context=xc), 1) 3251 d = c.logical_xor(Decimal(1), Decimal(1)) 3252 self.assertEqual(c.logical_xor(1, 1), d) 3253 self.assertEqual(c.logical_xor(Decimal(1), 1), d) 3254 self.assertEqual(c.logical_xor(1, Decimal(1)), d) 3255 self.assertRaises(TypeError, c.logical_xor, '1', 1) [all …]
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_math_ops.py | 1040 def logical_xor(x1, x2): function 1041 return _logical_binary_op(math_ops.logical_xor, x1, x2)
|
/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 | 164 math_ops.logical_and, math_ops.logical_or, math_ops.logical_xor
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16_test.py | 251 np.greater_equal, np.logical_and, np.logical_or, np.logical_xor
|
/external/llvm-project/mlir/include/mlir/Dialect/Tosa/IR/ |
D | TosaOps.td | 586 // Operator: logical_xor 588 def Tosa_LogicalXorOp : Tosa_Op<"logical_xor", [ResultsBroadcastableShape,
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 272 name: "logical_xor"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 272 name: "logical_xor"
|
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/ |
D | chlo_ops.td | 337 Returns `logical_xor(lhs, rhs)` element-wise.
|
/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/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 | 1563 def logical_xor(x, y, name="LogicalXor"): function 1625 return logical_xor(x, y, name)
|