From adfccb872f0970f95ee594e1fc0dd6c40554abe7 Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Fri, 28 Jul 2017 15:04:06 +0100 Subject: COMPMID-415: Move BitwiseNot to new validation Change-Id: I3388eae0c55dd56f0777736128d93a7e2fa6ba9d Reviewed-on: http://mpd-gerrit.cambridge.arm.com/82052 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- tests/validation/ReferenceCPP.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'tests/validation/ReferenceCPP.cpp') diff --git a/tests/validation/ReferenceCPP.cpp b/tests/validation/ReferenceCPP.cpp index 5b7f473d6c..3bf70a0a19 100644 --- a/tests/validation/ReferenceCPP.cpp +++ b/tests/validation/ReferenceCPP.cpp @@ -173,15 +173,6 @@ void ReferenceCPP::arithmetic_subtraction(const RawTensor &src1, const RawTensor boost::apply_visitor(arithmetic_subtraction_visitor(convert_policy), s1, s2, d); } -// Bitwise not -void ReferenceCPP::bitwise_not(const RawTensor &src, RawTensor &dst) -{ - ARM_COMPUTE_ERROR_ON(src.data_type() != DataType::U8 || dst.data_type() != DataType::U8); - const Tensor s(src.shape(), src.data_type(), src.fixed_point_position(), reinterpret_cast(src.data())); - Tensor d(dst.shape(), dst.data_type(), dst.fixed_point_position(), reinterpret_cast(dst.data())); - tensor_operations::bitwise_not(s, d); -} - // Box3x3 filter void ReferenceCPP::box3x3(const RawTensor &src, RawTensor &dst, BorderMode border_mode, uint8_t constant_border_value) { -- cgit v1.2.1