aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h')
-rw-r--r--tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h b/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h
index 793c540482..c8e6f4a8db 100644
--- a/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h
+++ b/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h
@@ -44,14 +44,12 @@ public:
template <typename...>
void setup(size_t x, size_t y, DataType data_type)
{
- constexpr int fixed_point_position = 4;
-
const TensorShape shape_a(x, y);
const TensorShape shape_b(static_cast<size_t>(x * 4.f), static_cast<size_t>(std::ceil(y / 4.f)));
// Create tensors
- a = create_tensor<TensorType>(shape_a, data_type, 1, fixed_point_position);
- b = create_tensor<TensorType>(shape_b, data_type, 1, fixed_point_position);
+ a = create_tensor<TensorType>(shape_a, data_type, 1);
+ b = create_tensor<TensorType>(shape_b, data_type, 1);
// Create and configure function
gemm.configure(&a, &b);