2019-03-01 16:14:28 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unit_tests/mocks/mock_gfx_partition.h"
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
using namespace NEO;
|
2019-03-01 16:14:28 +01:00
|
|
|
|
|
|
|
std::array<HeapIndex, static_cast<uint32_t>(HeapIndex::TOTAL_HEAPS)>
|
2019-03-13 13:14:34 +01:00
|
|
|
MockGfxPartition::allHeapNames{{HeapIndex::HEAP_INTERNAL_DEVICE_MEMORY,
|
|
|
|
HeapIndex::HEAP_INTERNAL,
|
|
|
|
HeapIndex::HEAP_EXTERNAL_DEVICE_MEMORY,
|
|
|
|
HeapIndex::HEAP_EXTERNAL,
|
|
|
|
HeapIndex::HEAP_STANDARD,
|
|
|
|
HeapIndex::HEAP_STANDARD64KB,
|
2019-03-15 11:09:06 +01:00
|
|
|
HeapIndex::HEAP_SVM}};
|