SWDEV-307185 - Move memory allocation under device layer

It can be too early to allocate memory at the begining of
Device::create() under PAL

Change-Id: I4bd76db7be3f6fb246243ea68022d8b0f860471d
This commit is contained in:
German Andryeyev
2022-03-21 16:14:02 -04:00
والد 54771e2ed7
کامیت 3af3fe10de
3فایلهای تغییر یافته به همراه11 افزوده شده و 5 حذف شده
-5
مشاهده پرونده
@@ -522,11 +522,6 @@ bool Device::create(const Isa &isa) {
if (nullptr == vaCacheMap_) {
return false;
}
if (amd::IS_HIP) {
// Allocate initial heap for device memory allocator
static constexpr size_t HeapBufferSize = 1024 * Ki;
heap_buffer_ = createMemory(HeapBufferSize);
}
return true;
}
@@ -1151,6 +1151,11 @@ bool Device::initializeHeapResources() {
return false;
}
xferQueue_->enableSyncedBlit();
if (amd::IS_HIP) {
// Allocate initial heap for device memory allocator
static constexpr size_t HeapBufferSize = 1024 * Ki;
heap_buffer_ = createMemory(HeapBufferSize);
}
}
return true;
}
@@ -784,6 +784,12 @@ bool Device::create() {
}
}
if (amd::IS_HIP) {
// Allocate initial heap for device memory allocator
static constexpr size_t HeapBufferSize = 1024 * Ki;
heap_buffer_ = createMemory(HeapBufferSize);
}
return true;
}