Skip to content

Commit

Permalink
#0: Fix DPRINT_DATA macro bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-dma committed Dec 3, 2024
1 parent ac55166 commit 742f718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tt_metal/hw/inc/debug/dprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
#if defined(COMPILE_FOR_BRISC) || defined(COMPILE_FOR_NCRISC)
#define DPRINT_DATA0(x) \
if (noc_index == 0) { \
x \
x; \
}
#define DPRINT_DATA1(x) \
if (noc_index == 1) { \
x \
x; \
}
#else
#define DPRINT_DATA0(x)
Expand Down

0 comments on commit 742f718

Please sign in to comment.