Skip to content

Commit 7d058bf

Browse files
author
AndreySorokin7
committed
fix
1 parent 5d33c0b commit 7d058bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/layers/PoolingLayer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ std::vector<ValueType> PoolingLayerImpl<ValueType>::run(
248248
static_cast<int>(pads_[2])
249249
: 0;
250250

251-
ValueType sum = ValueType(0);
251+
auto sum = ValueType(0);
252252
ValueType max_val = std::numeric_limits<ValueType>::lowest();
253253
size_t count = 0;
254254

0 commit comments

Comments
 (0)