aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/BitwiseNot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/BitwiseNot.cpp')
-rw-r--r--tests/validation/NEON/BitwiseNot.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/validation/NEON/BitwiseNot.cpp b/tests/validation/NEON/BitwiseNot.cpp
index f04a789e22..a5a4e350a9 100644
--- a/tests/validation/NEON/BitwiseNot.cpp
+++ b/tests/validation/NEON/BitwiseNot.cpp
@@ -23,7 +23,7 @@
*/
#include "AssetsLibrary.h"
#include "Globals.h"
-#include "NEON/NEAccessor.h"
+#include "NEON/Accessor.h"
#include "PaddingCalculator.h"
#include "TypePrinter.h"
#include "Utils.h"
@@ -44,7 +44,6 @@
using namespace arm_compute;
using namespace arm_compute::test;
-using namespace arm_compute::test::neon;
using namespace arm_compute::test::validation;
namespace
@@ -73,7 +72,7 @@ Tensor compute_bitwise_not(const TensorShape &shape)
BOOST_TEST(!dst.info()->is_resizable());
// Fill tensors
- library->fill_tensor_uniform(NEAccessor(src), 0);
+ library->fill_tensor_uniform(Accessor(src), 0);
// Compute function
bnot.run();
@@ -121,7 +120,7 @@ BOOST_DATA_TEST_CASE(RunSmall, SmallShapes(), shape)
RawTensor ref_dst = Reference::compute_reference_bitwise_not(shape);
// Validate output
- validate(NEAccessor(dst), ref_dst);
+ validate(Accessor(dst), ref_dst);
}
BOOST_TEST_DECORATOR(*boost::unit_test::label("nightly"))
@@ -134,7 +133,7 @@ BOOST_DATA_TEST_CASE(RunLarge, LargeShapes(), shape)
RawTensor ref_dst = Reference::compute_reference_bitwise_not(shape);
// Validate output
- validate(NEAccessor(dst), ref_dst);
+ validate(Accessor(dst), ref_dst);
}
BOOST_AUTO_TEST_SUITE_END()