aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/GEMMFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/GEMMFixture.h')
-rw-r--r--tests/benchmark/fixtures/GEMMFixture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/benchmark/fixtures/GEMMFixture.h b/tests/benchmark/fixtures/GEMMFixture.h
index e958d4fdde..3a308d9ada 100644
--- a/tests/benchmark/fixtures/GEMMFixture.h
+++ b/tests/benchmark/fixtures/GEMMFixture.h
@@ -40,7 +40,7 @@ class GEMMFixture : public framework::Fixture
{
public:
template <typename...>
- void setup(TensorShape shape_a, TensorShape shape_b, TensorShape shape_c, TensorShape shape_dst, float alpha, float beta, DataType data_type)
+ void setup(TensorShape shape_a, TensorShape shape_b, TensorShape shape_c, TensorShape shape_dst, float alpha, float beta, DataType data_type, bool reshape_b_only_on_first_run)
{
constexpr int fixed_point_position = 4;
@@ -51,7 +51,7 @@ public:
dst = create_tensor<TensorType>(shape_dst, data_type, 1, fixed_point_position);
// Create and configure function
- gemm.configure(&a, &b, &c, &dst, alpha, beta);
+ gemm.configure(&a, &b, &c, &dst, alpha, beta, GEMMInfo(false, false, reshape_b_only_on_first_run));
// Allocate tensors
a.allocator()->allocate();