aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark/fixtures/DepthConcatenateLayerFixture.h')
-rw-r--r--tests/benchmark/fixtures/DepthConcatenateLayerFixture.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h b/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
index bd4b404fc7..292adde49f 100644
--- a/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
+++ b/tests/benchmark/fixtures/DepthConcatenateLayerFixture.h
@@ -95,12 +95,12 @@ public:
for(const auto &shape : src_shapes)
{
- _srcs.emplace_back(create_tensor<TensorType>(shape, data_type, 1, _fractional_bits));
+ _srcs.emplace_back(create_tensor<TensorType>(shape, data_type, 1));
src_ptrs.emplace_back(&_srcs.back());
}
TensorShape dst_shape = calculate_depth_concatenate_shape(src_ptrs);
- _dst = create_tensor<TensorType>(dst_shape, data_type, 1, _fractional_bits);
+ _dst = create_tensor<TensorType>(dst_shape, data_type, 1);
_depth_concat.configure(src_ptrs, &_dst);
@@ -139,7 +139,6 @@ private:
std::vector<TensorType> _srcs{};
TensorType _dst{};
Function _depth_concat{};
- int _fractional_bits{ 1 };
};
} // namespace benchmark
} // namespace test