SWDEV-407691 - Always unmap file if HIP Runtime unbundler is used.
Change-Id: Ica15df31dfee3c495cf067a998e7e3b7c7397f40
[ROCm/clr commit: aa7c62db37]
This commit is contained in:
committed by
Karthik Jayaprakash
parent
1de5c73c38
commit
8969a60e98
@@ -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_)) {
|
||||
|
||||
Reference in New Issue
Block a user