aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark_new/NEON/GEMM.cpp
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2017-08-18 10:59:02 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit39b4e4dba05988240ff06c87d3c4cf4d7f63bcf2 (patch)
treed1cfc66d575283b5c8701eca0c96f4e723068b65 /tests/benchmark_new/NEON/GEMM.cpp
parent6dba6d1cdd5bb52802e272965ef28787c88577e5 (diff)
downloadComputeLibrary-39b4e4dba05988240ff06c87d3c4cf4d7f63bcf2.tar.gz
COMPMID-484: Added OpenBLAS GEMM F32 BLAS validation and benchmark tests.
Change-Id: I2d0503f4237d1fb266c96914841e982d69c48e76 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/84503 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/benchmark_new/NEON/GEMM.cpp')
-rw-r--r--tests/benchmark_new/NEON/GEMM.cpp3
1 files changed, 2 insertions, 1 deletions
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)