SWDEV-407691 - Always unmap file if HIP Runtime unbundler is used.

Change-Id: Ica15df31dfee3c495cf067a998e7e3b7c7397f40
Dieser Commit ist enthalten in:
kjayapra-amd
2023-06-26 19:54:48 -04:00
committet von Karthik Jayaprakash
Ursprung d29755452b
Commit aa7c62db37
+3 -1
Datei anzeigen
@@ -35,7 +35,9 @@ FatBinaryInfo::~FatBinaryInfo() {
}
if (fdesc_ > 0) {
if (fsize_ && image_mapped_ && !amd::Os::MemoryUnmapFile(image_, fsize_)) {
if (fsize_
&& (HIP_USE_RUNTIME_UNBUNDLER || image_mapped_)
&& !amd::Os::MemoryUnmapFile(image_, fsize_)) {
guarantee(false, "Cannot unmap file for fdesc: %d fsize: %d \n", fdesc_, fsize_);
}
if (!amd::Os::CloseFileHandle(fdesc_)) {