From 94450f1fc91a89778354c2e1c07a328ba86d9cfc Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Fri, 30 Jun 2017 12:48:43 +0100 Subject: COMPMID-417: Use a common create_tensor function Change-Id: I6b0511484a5b433ebec3fd62d778e64dcb4f89b5 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/79362 Reviewed-by: Georgios Pinitas Tested-by: Kaizen --- tests/benchmark/NEON/GEMM.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/benchmark/NEON/GEMM.h') diff --git a/tests/benchmark/NEON/GEMM.h b/tests/benchmark/NEON/GEMM.h index 24d196523f..4f0557d610 100644 --- a/tests/benchmark/NEON/GEMM.h +++ b/tests/benchmark/NEON/GEMM.h @@ -63,10 +63,10 @@ public: TensorShape shape_d = gemm_obj.shape_d; // Create tensors - a = create_tensor(shape_a, data_type, 1, 4); - b = create_tensor(shape_b, data_type, 1, 4); - c = create_tensor(shape_c, data_type, 1, 4); - d = create_tensor(shape_d, data_type, 1, 4); + a = create_tensor(shape_a, data_type, 1, 4); + b = create_tensor(shape_b, data_type, 1, 4); + c = create_tensor(shape_c, data_type, 1, 4); + d = create_tensor(shape_d, data_type, 1, 4); // Create and configure function gemm_layer = std::unique_ptr(new Function()); -- cgit v1.2.1