Revert "refactor: split CpuInaccessible MemoryPool types to Device and System"

This reverts commit 2e8cf5fdf5.

Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2023-10-17 09:26:50 +00:00
committed by Compute-Runtime-Automation
parent c68f7c8fe2
commit af7bcbf99c
29 changed files with 79 additions and 395 deletions

View File

@@ -562,14 +562,13 @@ TEST(MemoryPoolLogging, givenGraphicsMemoryPoolWhenConvertingToStringThenCorrect
DebugVariables flags;
FullyEnabledFileLogger fileLogger(testFile, flags);
std::array<std::pair<MemoryPool, const char *>, 8> memoryPoolValues = {
std::array<std::pair<MemoryPool, const char *>, 7> memoryPoolValues = {
{{MemoryPool::MemoryNull, "MemoryNull"},
{MemoryPool::LocalMemory, "LocalMemory"},
{MemoryPool::System4KBPages, "System4KBPages"},
{MemoryPool::System4KBPagesWith32BitGpuAddressing, "System4KBPagesWith32BitGpuAddressing"},
{MemoryPool::System64KBPages, "System64KBPages"},
{MemoryPool::System64KBPagesWith32BitGpuAddressing, "System64KBPagesWith32BitGpuAddressing"},
{MemoryPool::LocalCpuInaccessible, "LocalCpuInaccessible"},
{MemoryPool::SystemCpuInaccessible, "SystemCpuInaccessible"}}};
for (const auto &[pool, str] : memoryPoolValues) {