SWDEV-455041 - Continue processing fat binary even if other code object bundle processing fail.

Change-Id: Iea553ab0265c08341f915644075ce2b6ed9b3200


[ROCm/clr commit: 863c56262e]
This commit is contained in:
kjayapra-amd
2024-04-03 10:46:56 -04:00
committed by Karthik Jayaprakash
parent cb1f02f4f7
commit 2335c92a1a
+1 -4
View File
@@ -711,11 +711,8 @@ void PlatformState::init() {
initialized_ = true;
for (auto& it : statCO_.modules_) {
hipError_t err = digestFatBinary(it.first, it.second);
if (err == hipErrorNoBinaryForGpu) {
if (err != hipSuccess) {
HIP_ERROR_PRINT(err, "continue parsing remaining modules");
} else if (err != hipSuccess) {
HIP_ERROR_PRINT(err);
return;
}
}
for (auto& it : statCO_.vars_) {