SWDEV-233927 - Crash if binary for current device is not found.

Change-Id: I57281ae6c09110f39155664fca5a83ea57bb62b4
此提交包含在:
kjayapra-amd
2020-05-28 15:11:55 -04:00
提交者 Karthik Jayaprakash
父節點 766e708535
當前提交 f2899243f3
+1 -1
查看文件
@@ -125,7 +125,7 @@ hipError_t __hipExtractCodeObjectFromFatBinary(const void* data,
if (num_code_objs == devices.size()) {
return hipSuccess;
} else {
DevLogError("hipErrorNoBinaryForGpu: Coudn't find binary for current devices!");
fatal("hipErrorNoBinaryForGpu: Coudn't find binary for current devices!");
return hipErrorNoBinaryForGpu;
}
}