aboutsummaryrefslogtreecommitdiff
path: root/tests/fixtures_new/GEMMFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures_new/GEMMFixture.h')
-rw-r--r--tests/fixtures_new/GEMMFixture.h6
1 files changed, 5 insertions, 1 deletions
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 <typename TensorType, typename Function>
+template <typename TensorType, typename Function, typename Accessor>
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()