2019-03-01 23:14:28 +08:00
|
|
|
/*
|
2023-12-12 16:58:42 +08:00
|
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
2019-03-01 23:14:28 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-05-13 21:27:50 +08:00
|
|
|
#include "shared/test/common/mocks/mock_gfx_partition.h"
|
2019-03-01 23:14:28 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2019-03-01 23:14:28 +08:00
|
|
|
|
2023-12-12 16:58:42 +08:00
|
|
|
std::array<HeapIndex, static_cast<uint32_t>(HeapIndex::totalHeaps)>
|
|
|
|
MockGfxPartition::allHeapNames{{HeapIndex::heapInternalDeviceMemory,
|
|
|
|
HeapIndex::heapInternal,
|
|
|
|
HeapIndex::heapExternalDeviceMemory,
|
|
|
|
HeapIndex::heapExternal,
|
|
|
|
HeapIndex::heapStandard,
|
|
|
|
HeapIndex::heapStandard64KB,
|
|
|
|
HeapIndex::heapStandard2MB,
|
|
|
|
HeapIndex::heapSvm}};
|