SWDEV-518221 Fix major/minor Comgr version check

Change-Id: I2210aadafcae984dafc68c3fe16508bb2b409077
This commit is contained in:
Jacob Lambert
2025-03-04 11:39:46 -08:00
committad av Jacob Lambert
förälder e5425393b4
incheckning 2e2b6b3592
+3 -3
Visa fil
@@ -200,12 +200,12 @@ hipError_t FatBinaryInfo::ExtractFatBinaryUsingCOMGR(const std::vector<hip::Devi
if (isCompressed || HIP_ALWAYS_USE_NEW_COMGR_UNBUNDLING_ACTION) {
size_t major = 0, minor = 0;
amd::Comgr::get_version(&major, &minor);
if (major >= 2 && minor >= 8) {
if ((major == 2 && minor >= 8) || major > 2) {
hip_status = ExtractFatBinaryUsingCOMGR(image_, devices);
break;
} else if (isCompressed) {
LogPrintfError("comgr %zu.%zu cannot support commpressed mode which need comgr 2.8+", major,
minor);
LogPrintfError("comgr %zu.%zu cannot support compressed mode which requires comgr 2.8+",
major, minor);
hip_status = hipErrorNotSupported;
break;
} else if (HIP_ALWAYS_USE_NEW_COMGR_UNBUNDLING_ACTION) {