mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
fix(ocl): allocate small buffer pool uncompressed
Related-To: HSD-15016054429 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
868dd7b017
commit
a47ca96a42
@@ -580,7 +580,7 @@ bool Context::BufferPoolAllocator::isAggregatedSmallBuffersEnabled(Context *cont
|
||||
}
|
||||
|
||||
Context::BufferPool::BufferPool(Context *context) : BaseType(context->memoryManager, nullptr) {
|
||||
static constexpr cl_mem_flags flags{};
|
||||
static constexpr cl_mem_flags flags = CL_MEM_UNCOMPRESSED_HINT_INTEL;
|
||||
[[maybe_unused]] cl_int errcodeRet{};
|
||||
Buffer::AdditionalBufferCreateArgs bufferCreateArgs{};
|
||||
bufferCreateArgs.doNotProvidePerformanceHints = true;
|
||||
|
||||
Reference in New Issue
Block a user