aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/ActivationLayerFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/ActivationLayerFixture.h')
-rw-r--r--tests/benchmark/fixtures/ActivationLayerFixture.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/benchmark/fixtures/ActivationLayerFixture.h b/tests/benchmark/fixtures/ActivationLayerFixture.h
index d46ef2827b..a82861f624 100644
--- a/tests/benchmark/fixtures/ActivationLayerFixture.h
+++ b/tests/benchmark/fixtures/ActivationLayerFixture.h
@@ -48,10 +48,9 @@ public:
shape.set(shape.num_dimensions(), batches);
// Create tensors
- const int fixed_point_position = 4;
const QuantizationInfo q_info(0.5f, -10);
- src = create_tensor<TensorType>(shape, data_type, 1, fixed_point_position, q_info);
- dst = create_tensor<TensorType>(shape, data_type, 1, fixed_point_position, q_info);
+ src = create_tensor<TensorType>(shape, data_type, 1, q_info);
+ dst = create_tensor<TensorType>(shape, data_type, 1, q_info);
// Create and configure function
act_layer.configure(&src, &dst, info);