Skip to content
This repository was archived by the owner on Jul 22, 2026. It is now read-only.

Commit ea25dd9

Browse files
committed
tidy
1 parent 0ad10b5 commit ea25dd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/layers/ConvLayer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void Conv4D(const Tensor &input, const Tensor &kernel_, const Tensor &bias_,
246246
size_t group_start_channel = group * in_channels_per_group;
247247
size_t group_end_channel = group_start_channel + in_channels_per_group;
248248
size_t kernel_oc_base = oc * kernel_output_stride;
249-
ValueType bias_value = ValueType{};
249+
auto bias_value = ValueType{};
250250
if (bias_data != nullptr && oc < bias_data->size()) {
251251
bias_value = (*bias_data)[oc];
252252
}

0 commit comments

Comments
 (0)