aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/Fixedpoint/Exp_QS8.cpp')
-rw-r--r--tests/validation/NEON/Fixedpoint/Exp_QS8.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp b/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
index f8fc0c2ea3..e901f60986 100644
--- a/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
+++ b/tests/validation/NEON/Fixedpoint/Exp_QS8.cpp
@@ -22,7 +22,6 @@
* SOFTWARE.
*/
#include "Globals.h"
-#include "NEON/Helper.h"
#include "NEON/NEAccessor.h"
#include "TensorLibrary.h"
#include "TypePrinter.h"
@@ -60,8 +59,8 @@ const float tolerance = 0.0f; /**< Tolerance value for comparing reference's out
Tensor compute_exp_qs8(const TensorShape &shape, int fixed_point_position)
{
// Create tensors
- Tensor src = create_tensor(shape, DataType::QS8, 1, fixed_point_position);
- Tensor dst = create_tensor(shape, DataType::QS8, 1, fixed_point_position);
+ Tensor src = create_tensor<Tensor>(shape, DataType::QS8, 1, fixed_point_position);
+ Tensor dst = create_tensor<Tensor>(shape, DataType::QS8, 1, fixed_point_position);
constexpr unsigned int num_elems_processed_per_iteration = 16;
Window window = calculate_max_window(*src.info(), Steps(num_elems_processed_per_iteration));