Fixing logging (#1146)

* Fixing logging

* Removing logs
This commit is contained in:
Gopesh Bhardwaj
2024-10-24 12:03:16 +05:30
کامیت شده توسط GitHub
والد dd71131114
کامیت 42765c35a2
2فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
@@ -404,7 +404,6 @@ QueueController*
get_queue_controller()
{
static auto*& controller = common::static_object<QueueController>::construct();
LOG(ERROR) << (uint64_t) controller;
return controller;
}
@@ -49,7 +49,7 @@ public:
using agent_cache_map_t = std::unordered_map<uint32_t, AgentCache>;
QueueController() = default;
~QueueController() { ROCP_ERROR << "Destroying Queue"; }
~QueueController() {}
// Initializes the QueueInterceptor. This must be delayed until
// HSA has been inited.
void init(CoreApiTable& core_table, AmdExtTable& ext_table);