SWDEV-240804 - Allow system memory creation.

Always allocate managed memory in ROCclr and backend will decide
what kind of memory to use. Currently ROCclr should fall to
GPU accessible system memory if HMM isn't available

Change-Id: I71328687b2dd4a3f563571f2b755079d82dca433
Tá an tiomantas seo le fáil i:
German Andryeyev
2021-05-17 10:40:39 -04:00
tuismitheoir 26235f49e6
tiomantas 302e527225
-4
Féach ar an gComhad
@@ -200,10 +200,6 @@ hipError_t ihipMallocManaged(void** ptr, size_t size, unsigned int align) {
const amd::Device& dev = *ctx.devices()[0];
if (!dev.info().hmmSupported_) {
return hipErrorInvalidValue;
}
// For now limit to the max allocation size on the device.
// The apps should be able to go over the limit in the future
if (dev.info().maxMemAllocSize_ < size) {