File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
hls4ml/templates/vivado/nnet_utils Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ void pooling2d_cl(data_T data[CONFIG_T::in_height * CONFIG_T::in_width * CONFIG_
175
175
const int limit = pool_op_limit<CONFIG_T>();
176
176
#pragma HLS ALLOCATION function instances=CONFIG_T::pool_op limit=limit
177
177
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
179
179
static constexpr int full_padded_width = CONFIG_T::in_width + CONFIG_T::pad_left + CONFIG_T::pad_right;
180
180
static constexpr int full_padded_height = CONFIG_T::in_height + CONFIG_T::pad_top + CONFIG_T::pad_bottom;
181
181
static constexpr int restricted_padded_width = full_padded_width / CONFIG_T::stride_width * CONFIG_T::stride_width;
You can’t perform that action at this time.
0 commit comments