aboutsummaryrefslogtreecommitdiff
path: root/test/1.3/QLstm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/1.3/QLstm.cpp')
-rw-r--r--test/1.3/QLstm.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/1.3/QLstm.cpp b/test/1.3/QLstm.cpp
index f58ed0a9..2dbd8b3e 100644
--- a/test/1.3/QLstm.cpp
+++ b/test/1.3/QLstm.cpp
@@ -10,11 +10,12 @@
#include <armnn/utility/IgnoreUnused.hpp>
-#include <boost/array.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/test/data/test_case.hpp>
#include <boost/math/special_functions/relative_difference.hpp>
+#include <array>
+
BOOST_AUTO_TEST_SUITE(QLSTMTests)
using ArmnnDriver = armnn_driver::ArmnnDriver;
@@ -85,9 +86,9 @@ void ExecuteModel(const armnn_driver::hal_1_3::HalPolicy::Model& model,
}
#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::CpuAcc }};
+static const std::array<armnn::Compute, 2> COMPUTE_DEVICES = {{ armnn::Compute::CpuRef, armnn::Compute::CpuAcc }};
#endif
// Add our own tests here since we skip the qlstm tests which Google supplies (because of non-const weights)