From 39b4e4dba05988240ff06c87d3c4cf4d7f63bcf2 Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Fri, 18 Aug 2017 10:59:02 +0100 Subject: 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 Tested-by: Kaizen --- tests/benchmark_new/CL/GEMM.cpp | 3 ++- tests/benchmark_new/NEON/GEMM.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/benchmark_new') 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; +using CLGEMMFixture = GEMMFixture; 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; +using NEGEMMFixture = GEMMFixture; TEST_SUITE(NEON) -- cgit v1.2.1