Skip to content

Commit

Permalink
#8460: fix assert/debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
vtangTT committed May 16, 2024
1 parent 6272059 commit f13ab59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <cstdint>
#include <unordered_map>
#include "core_coord.h"
#include "logger.hpp"
#include "tt_metal/common/logger.hpp"
#include "tt_metal/host_api.hpp"
#include "tt_metal/detail/tt_metal.hpp"
#include "tt_metal/impl/dispatch/cq_commands.hpp"
Expand Down Expand Up @@ -338,7 +338,7 @@ inline bool DeviceData::validate_one_core(Device *device,
core_string = "PCIE";
} else {
tt::log_fatal("Logical core: {} physical core {} core type {}", logical_core, phys_core, core_type);
TT_ASSERT(0, "Core type not found");
TT_ASSERT(false, "Core type not found");
}

// Read results from device and compare to expected for this core.
Expand Down

0 comments on commit f13ab59

Please sign in to comment.