mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
fix: do not cache tag buffer allocation on GPU
Related-To: NEO-14360 Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
3b93e23156
commit
804b8f5db6
@@ -772,6 +772,9 @@ TEST(GmmTest, givenAllocationTypeWhenGettingUsageTypeThenReturnCorrectValue) {
|
||||
case AllocationType::printfSurface:
|
||||
expectedUsage = forceUncached ? uncachedGmmUsageType : GMM_RESOURCE_USAGE_OCL_SYSTEM_MEMORY_BUFFER;
|
||||
break;
|
||||
case AllocationType::tagBuffer:
|
||||
expectedUsage = forceUncached ? uncachedGmmUsageType : GMM_RESOURCE_USAGE_OCL_BUFFER_CSR_UC;
|
||||
break;
|
||||
case AllocationType::semaphoreBuffer:
|
||||
case AllocationType::ringBuffer:
|
||||
case AllocationType::commandBuffer:
|
||||
@@ -871,6 +874,9 @@ TEST(GmmTest, givenAllocationTypeAndMitigatedDcFlushWhenGettingUsageTypeThenRetu
|
||||
case AllocationType::printfSurface:
|
||||
expectedUsage = GMM_RESOURCE_USAGE_OCL_SYSTEM_MEMORY_BUFFER;
|
||||
break;
|
||||
case AllocationType::tagBuffer:
|
||||
expectedUsage = GMM_RESOURCE_USAGE_OCL_BUFFER_CSR_UC;
|
||||
break;
|
||||
case AllocationType::semaphoreBuffer:
|
||||
case AllocationType::ringBuffer:
|
||||
case AllocationType::commandBuffer:
|
||||
|
||||
Reference in New Issue
Block a user