Skip to content

Commit

Permalink
Fix l1 membar log (#218)
Browse files Browse the repository at this point in the history
Related tt_metal CI issue:
tenstorrent/tt-metal#14225
This was accidentally checked in #64 

This filled up logs on CI machines that tt_metal uses and started
crashing them. This is non-deterministic behavior and also some later
jobs might fail due to this issue, not exactly the job responsible for
it -> which both made it hard to find the cause of the issue.

Hopefully this is the only issue, if there is an additional issue with
UMD being stuck we will investigate further.
  • Loading branch information
broskoTT authored Oct 29, 2024
1 parent 28e236a commit cf4ed3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion device/tt_silicon_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2537,7 +2537,7 @@ void tt_SiliconDevice::set_membar_flag(const chip_id_t chip, const std::unordere
cores_synced.insert(core);
}
else {
log_info(LogSiliconDriver, "Waiting for core {} to recieve mem bar flag {} in function", core.str(), barrier_value);
log_trace(LogSiliconDriver, "Waiting for core {} to recieve mem bar flag {} in function", core.str(), barrier_value);
}
}
}
Expand Down

0 comments on commit cf4ed3a

Please sign in to comment.