aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/common/PoolingLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/common/PoolingLayer.h')
-rw-r--r--tests/benchmark/common/PoolingLayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/benchmark/common/PoolingLayer.h b/tests/benchmark/common/PoolingLayer.h
index 5bb332fd6b..96ff905568 100644
--- a/tests/benchmark/common/PoolingLayer.h
+++ b/tests/benchmark/common/PoolingLayer.h
@@ -59,8 +59,8 @@ public:
dst_shape.set(dst_shape.num_dimensions(), batches);
// Create tensors
- src = create_tensor(src_shape, dt, 1, fixed_point_position);
- dst = create_tensor(dst_shape, dt, 1, fixed_point_position);
+ src = create_tensor<TensorType>(src_shape, dt, 1, fixed_point_position);
+ dst = create_tensor<TensorType>(dst_shape, dt, 1, fixed_point_position);
// Create and configure function
pool_layer.configure(&src, &dst, pool_obj.info);