Skip to content

Commit

Permalink
sw: Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Jul 25, 2024
1 parent 53deae6 commit fe234db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sw/dnn/conv2d/src/conv2d.h
Original file line number Diff line number Diff line change
Expand Up @@ -2457,7 +2457,7 @@ void conv2d_layer(const conv_layer *l) {
l->FH * l->FW * l->TILE_CI + 1, 1,
&ofmap[write_buf * ofmap_stride +
compute_id * ofmap_co_stride],
0, &alpha, setup_SSR);
0, alpha, setup_SSR);

} else {
const uint32_t alpha = 1;
Expand All @@ -2469,7 +2469,7 @@ void conv2d_layer(const conv_layer *l) {
l->FH * l->FW * l->TILE_CI + 1, 1,
&ofmap[write_buf * ofmap_stride +
compute_id * ofmap_co_stride],
0, &alpha, setup_SSR);
0, alpha, setup_SSR);
}
}
// Toggle read and write buffer
Expand Down

0 comments on commit fe234db

Please sign in to comment.