Skip to content

Commit

Permalink
#0: no core timeout for simulators
Browse files Browse the repository at this point in the history
  • Loading branch information
vtangTT committed Oct 13, 2024
1 parent b1f3b08 commit f7818f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tt_metal/llrt/llrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ void wait_until_cores_done(
// poll the cores until the set of not done cores is empty
int loop_count = 1;
auto start = std::chrono::high_resolution_clock::now();
if (std::getenv("TT_METAL_SIMULATOR_EN")) timeout_ms = 0;
while (!not_done_phys_cores.empty()) {
if (timeout_ms > 0) {
auto now = std::chrono::high_resolution_clock::now();
Expand Down

0 comments on commit f7818f3

Please sign in to comment.