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/fixtures_new/GEMMFixture.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests/fixtures_new') diff --git a/tests/fixtures_new/GEMMFixture.h b/tests/fixtures_new/GEMMFixture.h index b23661f3e3..669a91f0cb 100644 --- a/tests/fixtures_new/GEMMFixture.h +++ b/tests/fixtures_new/GEMMFixture.h @@ -35,7 +35,7 @@ namespace arm_compute namespace test { /** Fixture that can be used for NEON and CL */ -template +template class GEMMFixture : public framework::Fixture { public: @@ -58,6 +58,10 @@ public: b.allocator()->allocate(); c.allocator()->allocate(); dst.allocator()->allocate(); + + library->fill_tensor_uniform(Accessor(a), 0); + library->fill_tensor_uniform(Accessor(b), 1); + library->fill_tensor_uniform(Accessor(c), 2); } void run() -- cgit v1.2.1