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 e5bbdf2f2e..58beee5d62 100644
--- a/tests/validation/Reference.cpp
+++ b/tests/validation/Reference.cpp
@@ -214,23 +214,6 @@ RawTensor Reference::compute_reference_arithmetic_subtraction(const TensorShape
return ref_dst;
}
-RawTensor Reference::compute_reference_bitwise_and(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_and(ref_src1, ref_src2, ref_dst);
-
- return ref_dst;
-}
-
RawTensor Reference::compute_reference_bitwise_or(const TensorShape &shape)
{
// Create reference