aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark_new
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark_new')
-rw-r--r--tests/benchmark_new/CL/GEMM.cpp3
-rw-r--r--tests/benchmark_new/NEON/GEMM.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/benchmark_new/CL/GEMM.cpp b/tests/benchmark_new/CL/GEMM.cpp
index a2fd09d059..9b35285e7c 100644
--- a/tests/benchmark_new/CL/GEMM.cpp
+++ b/tests/benchmark_new/CL/GEMM.cpp
@@ -27,6 +27,7 @@
#include "arm_compute/runtime/CL/functions/CLGEMM.h"
#include "framework/Macros.h"
#include "framework/datasets/Datasets.h"
+#include "tests/CL/CLAccessor.h"
#include "tests/TypePrinter.h"
#include "tests/datasets_new/MatrixMultiplyGEMMDataset.h"
#include "tests/datasets_new/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h"
@@ -41,7 +42,7 @@ namespace
const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
} // namespace
-using CLGEMMFixture = GEMMFixture<CLTensor, CLGEMM>;
+using CLGEMMFixture = GEMMFixture<CLTensor, CLGEMM, CLAccessor>;
TEST_SUITE(CL)
diff --git a/tests/benchmark_new/NEON/GEMM.cpp b/tests/benchmark_new/NEON/GEMM.cpp
index ad288267af..59ac4329c0 100644
--- a/tests/benchmark_new/NEON/GEMM.cpp
+++ b/tests/benchmark_new/NEON/GEMM.cpp
@@ -28,6 +28,7 @@
#include "arm_compute/runtime/TensorAllocator.h"
#include "framework/Macros.h"
#include "framework/datasets/Datasets.h"
+#include "tests/NEON/Accessor.h"
#include "tests/TypePrinter.h"
#include "tests/datasets_new/MatrixMultiplyGEMMDataset.h"
#include "tests/datasets_new/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1GEMMDataset.h"
@@ -49,7 +50,7 @@ const auto data_types = framework::dataset::make("DataType",
});
} // namespace
-using NEGEMMFixture = GEMMFixture<Tensor, NEGEMM>;
+using NEGEMMFixture = GEMMFixture<Tensor, NEGEMM, Accessor>;
TEST_SUITE(NEON)