From 34fc134a454cc19548f1392710e1a1d6f8bbe7f3 Mon Sep 17 00:00:00 2001 From: Almeet Bhullar Date: Tue, 3 Dec 2024 04:00:47 +0000 Subject: [PATCH] Update eth kernel hash to include processor --- tt_metal/impl/kernels/kernel.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tt_metal/impl/kernels/kernel.cpp b/tt_metal/impl/kernels/kernel.cpp index c342ec431d58..b0b7370667a0 100644 --- a/tt_metal/impl/kernels/kernel.cpp +++ b/tt_metal/impl/kernels/kernel.cpp @@ -170,7 +170,10 @@ std::string DataMovementKernel::config_hash() const { // Add "eth_" to the hash to differentiate between erisc and brisc. std::string EthernetKernel::config_hash() const { - return fmt::format("eth_{}_{}", magic_enum::enum_name(this->config_.noc), this->config_.eth_mode); + return fmt::format("eth_{}_{}_{}", + magic_enum::enum_name(this->config_.noc), + this->config_.eth_mode, + this->config_.processor); } std::string ComputeKernel::config_hash() const {