aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/Reference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/Reference.cpp')
-rw-r--r--tests/validation/Reference.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/validation/Reference.cpp b/tests/validation/Reference.cpp
index fca3b9d78d..0fd30358b0 100644
--- a/tests/validation/Reference.cpp
+++ b/tests/validation/Reference.cpp
@@ -239,23 +239,6 @@ RawTensor Reference::compute_reference_arithmetic_subtraction(const TensorShape
return ref_dst;
}
-RawTensor Reference::compute_reference_bitwise_xor(const TensorShape &shape)
-{
- // Create reference
- RawTensor ref_src1(shape, DataType::U8);
- RawTensor ref_src2(shape, DataType::U8);
- RawTensor ref_dst(shape, DataType::U8);
-
- // Fill reference
- library->fill_tensor_uniform(ref_src1, 0);
- library->fill_tensor_uniform(ref_src2, 1);
-
- // Compute reference
- ReferenceCPP::bitwise_xor(ref_src1, ref_src2, ref_dst);
-
- return ref_dst;
-}
-
RawTensor Reference::compute_reference_bitwise_not(const TensorShape &shape)
{
// Create reference