Skip to content

Commit

Permalink
[software] 🐛 Fix sriedel-dev barriers problem
Browse files Browse the repository at this point in the history
  • Loading branch information
sermazz committed Sep 12, 2023
1 parent cbdd393 commit ff3b1ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions software/apps/baseline/matmul/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ int main() {

// Initial setup
int32_t *round_barrier = (int32_t *)(core_id * SEQ_MEM_SIZE);
if (core_id != 0) {
*round_barrier = 0;
}
// if (core_id != 0) {
*round_barrier = 0;
// }

// Initialize img
if (core_id == 0) {
Expand Down

0 comments on commit ff3b1ca

Please sign in to comment.