SWDEV-417317 - Bypass agent init for HIP.

Change-Id: I3396cf7c1feced03d29f5e5ff3c77474f4f7e1ec
This commit is contained in:
Jaydeep Patel
2023-09-05 17:32:28 +00:00
committed by Jaydeepkumar Patel
parent 96ac99b4a0
commit 198b7b412d
+1 -1
View File
@@ -74,7 +74,7 @@ bool Runtime::init() {
if (!Flag::init() || !option::init() || !Device::init()
// Agent initializes last
|| !Agent::init()) {
|| (!amd::IS_HIP && !Agent::init())) {
ClPrint(LOG_ERROR, LOG_INIT, "Runtime initialization failed");
return false;
}