aboutsummaryrefslogtreecommitdiff
path: root/test/1.1/Mean.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/1.1/Mean.cpp')
-rw-r--r--test/1.1/Mean.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/1.1/Mean.cpp b/test/1.1/Mean.cpp
index b3074909..8c52d23d 100644
--- a/test/1.1/Mean.cpp
+++ b/test/1.1/Mean.cpp
@@ -8,9 +8,10 @@
#include "../1.1/HalPolicy.hpp"
-#include <boost/array.hpp>
#include <boost/test/data/test_case.hpp>
+#include <array>
+
BOOST_AUTO_TEST_SUITE(MeanTests)
using namespace android::hardware;
@@ -23,9 +24,9 @@ namespace
{
#ifndef ARMCOMPUTECL_ENABLED
- static const boost::array<armnn::Compute, 1> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef }};
+ static const std::array<armnn::Compute, 1> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef }};
#else
- static const boost::array<armnn::Compute, 2> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef, armnn::Compute::GpuAcc }};
+ static const std::array<armnn::Compute, 2> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef, armnn::Compute::GpuAcc }};
#endif
void MeanTestImpl(const TestTensor& input,