SWDEV-539710 - Defer allocation of managed variable (#652)

Co-authored-by: Rahul Manocha <rmanocha@amd.com>

[ROCm/clr commit: 3f6f9d6081]
This commit is contained in:
Manocha, Rahul
2025-07-31 08:30:23 -07:00
committed by GitHub
parent 405962df53
commit 4a93a614e5
11 changed files with 177 additions and 87 deletions
+2 -2
View File
@@ -1553,8 +1553,8 @@ bool SvmBuffer::Contains(uintptr_t ptr) {
// The allocation flags are ignored for now.
void* SvmBuffer::malloc(Context& context, cl_svm_mem_flags flags, size_t size, size_t alignment,
const amd::Device* curDev) {
void* ret = context.svmAlloc(size, alignment, flags, curDev);
const amd::Device* curDev, void* hostptr) {
void* ret = context.svmAlloc(size, alignment, flags, curDev, hostptr);
if (ret == nullptr) {
LogError("Unable to allocate aligned memory");
return nullptr;