aboutsummaryrefslogtreecommitdiff
path: root/test/Lstm.hpp
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2020-03-09 18:20:42 +0000
committerJan Eilers <jan.eilers@arm.com>2020-03-11 10:47:43 +0000
commit0b7a419c156e6f9eaf36ec166d4a3e0878b16959 (patch)
treec0a3cfa9d1efb2f8991640a84f99f61e931ef9fa /test/Lstm.hpp
parent9ada14e98d99d965bfa98fff1cfb9fde91a744fd (diff)
downloadandroid-nn-driver-0b7a419c156e6f9eaf36ec166d4a3e0878b16959.tar.gz
IVGCVSW-4482 Remove boost::ignore_unused
* replaced boost::ignore_unused with armnn::IgnoreUnused Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I4443a3620ed7d51b151af67c070d4225e410b5fa
Diffstat (limited to 'test/Lstm.hpp')
-rw-r--r--test/Lstm.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Lstm.hpp b/test/Lstm.hpp
index d3e03d75..3ac095dc 100644
--- a/test/Lstm.hpp
+++ b/test/Lstm.hpp
@@ -7,6 +7,8 @@
#include "DriverTestHelpers.hpp"
+#include <armnn/utility/IgnoreUnused.hpp>
+
#include <boost/array.hpp>
#include <boost/math/special_functions/relative_difference.hpp>
@@ -2371,7 +2373,7 @@ void LstmCifgPeepholeProjectionNoClippingLayerNorm(armnn::Compute compute)
template <typename HalPolicy>
void QuantizedLstm(armnn::Compute compute)
{
- boost::ignore_unused(compute);
+ armnn::IgnoreUnused(compute);
// This replicates android/frameworks/ml/nn/runtime/test/generated/vts_models/quantized_lstm.model.cpp
// with values from android/frameworks/ml/nn/runtime/test/generated/examples/quantized_lstm.example.cpp
// and weights, biases and scalars passed as CONSTANT_COPY tensors (instead of MODEL_INPUT tensors).