Home
last modified time | relevance | path

Searched refs:logical_xor (Results 1 – 25 of 74) sorted by relevance

123

/external/OpenCL-CTS/test_conformance/subgroups/
Dtest_subgroup_non_uniform_arithmetic.cpp105 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()
Dtest_subgroup_clustered_reduce.cpp176 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::logical_xor>>( in run_cluster_logical_and_or_xor_for_type()
Dsubgroup_common_templates.h323 case ArithmeticOp::logical_xor: return !a ^ !b; in calculate()
454 || operation == ArithmeticOp::logical_xor) in generate_inputs()
Dsubhelpers.h270 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/
Dragged_operators.py60 ragged_tensor.RaggedTensor.__xor__ = math_ops.logical_xor
61 ragged_tensor.RaggedTensor.__rxor__ = _right(math_ops.logical_xor)
Dragged_tensor_test_ops.py155 math_ops.logical_xor,
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dlogic.py75 return _make_logical_tests(tf.math.logical_xor)(
/external/python/cpython2/Lib/test/
Dtest_decimal.py1642 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/
Dcwise_ops_test.py256 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/
Dxla.py193 logical_xor = _broadcasting_binary_op(math_ops.logical_xor) variable
/external/python/cpython3/Lib/test/
Dtest_decimal.py2292 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/
Dnp_math_ops.py1039 def logical_xor(x1, x2): function
1040 return _logical_binary_op(math_ops.logical_xor, x1, x2)
/external/tensorflow/tensorflow/lite/testing/
Dbuild_def.bzl91 "logical_xor",
/external/python/cpython3/Lib/
D_pydecimal.py3401 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/
Ddecimal.py3295 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/
Dmath_test.py156 math_ops.logical_and, math_ops.logical_or, math_ops.logical_xor
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.math.pbtxt280 name: "logical_xor"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt280 name: "logical_xor"
/external/python/cpython2/Doc/library/
Ddecimal.rst700 .. 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/
Dbfloat16_test.py382 np.greater_equal, np.logical_and, np.logical_or, np.logical_xor
/external/python/cpython3/Doc/library/
Ddecimal.rst694 .. 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/
Dmath_ops.py1794 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/
Dchlo_ops.td357 Returns `logical_xor(lhs, rhs)` element-wise.
/external/tensorflow/third_party/py/numpy/tf_numpy_api/
Dtensorflow.experimental.numpy.pbtxt600 name: "logical_xor"
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/stablehlo/dialect/
DChloOps.td360 Returns `logical_xor(lhs, rhs)` element-wise.

123