SWDEV-357122 - fix failure in vdi so as to handle unreasonable input size in MallocManagedNegativeTest

Change-Id: I1ed1916b652afc67327b0935c3c60fc2a404df30
This commit is contained in:
Julia Jiang
2022-09-28 15:16:22 -04:00
zatwierdzone przez Julia Jiang
rodzic 05b2bd7995
commit dacd55f3d7
3 zmienionych plików z 11 dodań i 0 usunięć
+4
Wyświetl plik
@@ -2254,6 +2254,10 @@ void* Device::svmAlloc(amd::Context& context, size_t size, size_t alignment, cl_
}
// if the device supports SVM FGS, return the committed CPU address directly.
Memory* gpuMem = getRocMemory(mem);
if (gpuMem == nullptr) {
LogError("failed to create GPU memory from svm hidden buffer!");
return nullptr;
}
if (mem->getSvmPtr() != nullptr) {
// add the information to context so that we can use it later.