From afcc1bd9912481ad90372bbfb80418d79b84cfec Mon Sep 17 00:00:00 2001 From: David Ma Date: Fri, 20 Dec 2024 09:06:34 +0000 Subject: [PATCH] #0: Missed one --- tt_metal/impl/device/device.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tt_metal/impl/device/device.cpp b/tt_metal/impl/device/device.cpp index 17b35aa8e735..8c777b387eed 100644 --- a/tt_metal/impl/device/device.cpp +++ b/tt_metal/impl/device/device.cpp @@ -2831,13 +2831,6 @@ void Device::configure_command_queue_programs_new() { pointers[host_completion_q_wr_ptr / sizeof(uint32_t)] = (cq_start + this->sysmem_manager_->get_issue_queue_size(cq_id) + get_absolute_cq_offset(channel, cq_id, cq_size)) >> 4; pointers[host_completion_q_rd_ptr / sizeof(uint32_t)] = (cq_start + this->sysmem_manager_->get_issue_queue_size(cq_id) + get_absolute_cq_offset(channel, cq_id, cq_size)) >> 4; - log_warning( - "Sysmem: Addr={:#08x} - {:#08x} {:#08x} {:#08x} {:#08x}", - get_absolute_cq_offset(channel, cq_id, cq_size), - pointers[host_issue_q_rd_ptr / sizeof(uint32_t)], - pointers[host_issue_q_wr_ptr / sizeof(uint32_t)], - pointers[host_completion_q_wr_ptr / sizeof(uint32_t)], - pointers[host_completion_q_rd_ptr / sizeof(uint32_t)]); tt::Cluster::instance().write_sysmem(pointers.data(), pointers.size() * sizeof(uint32_t), get_absolute_cq_offset(channel, cq_id, cq_size), mmio_device_id, get_umd_channel(channel)); } }