2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-05-10 01:40:30 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/indirect_heap/indirect_heap.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
class CommandQueue;
|
|
|
|
|
|
|
|
struct IndirectHeapFixture {
|
2022-08-16 22:51:17 +08:00
|
|
|
void setUp(CommandQueue *pCmdQ);
|
|
|
|
void tearDown() {
|
2017-12-21 07:45:38 +08:00
|
|
|
}
|
|
|
|
|
2020-03-13 21:59:00 +08:00
|
|
|
IndirectHeap *pDSH = nullptr;
|
|
|
|
IndirectHeap *pIOH = nullptr;
|
|
|
|
IndirectHeap *pSSH = nullptr;
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|