Skip to content

Commit 88f072b

Browse files
committed
fix pre-commit
1 parent 0be1ef5 commit 88f072b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hls4ml/templates/vivado/nnet_utils/nnet_pooling.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ void pooling2d_cl(data_T data[CONFIG_T::in_height * CONFIG_T::in_width * CONFIG_
175175
const int limit = pool_op_limit<CONFIG_T>();
176176
#pragma HLS ALLOCATION function instances=CONFIG_T::pool_op limit=limit
177177

178-
// Add padding and reduce input width to area covered by pooling function
178+
// Add padding and reduce input width to area covered by pooling function
179179
static constexpr int full_padded_width = CONFIG_T::in_width + CONFIG_T::pad_left + CONFIG_T::pad_right;
180180
static constexpr int full_padded_height = CONFIG_T::in_height + CONFIG_T::pad_top + CONFIG_T::pad_bottom;
181181
static constexpr int restricted_padded_width = full_padded_width / CONFIG_T::stride_width * CONFIG_T::stride_width;

0 commit comments

Comments
 (0)