SWDEV-322620 - Virtual Memory Management

Hooked up the start VA hint address to PAL.

Change-Id: I4301d3eaaabcc85faf63fb25291291dcc3e8ebd1


[ROCm/clr commit: 470c4d7335]
This commit is contained in:
Christophe Paquot
2022-09-28 14:05:56 -07:00
committed by Christophe Paquot
parent 3db95d8b68
commit b2d02fe704
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# PAL interface versions
PAL_MAJOR_VERSION = 734
PAL_MAJOR_VERSION = 761
GPUOPEN_MAJOR_VERSION = 42
@@ -1255,6 +1255,10 @@ bool Resource::create(MemoryType memType, CreateParams* params, bool forceLinear
createInfo.flags.busAddressable = true;
} else if (memoryType() == VaRange) {
createInfo.flags.virtualAlloc = true;
if (params->owner_->getSvmPtr() != nullptr) {
createInfo.flags.startVaHintFlag = true;
createInfo.startVaHint = reinterpret_cast<Pal::gpusize>(params->owner_->getSvmPtr());
}
}
memTypeToHeap(&createInfo);