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>
diff --git a/tests/benchmark_new/CL/GEMM.cpp b/tests/benchmark_new/CL/GEMM.cpp
index a2fd09d..9b35285 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 @@
 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)