2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-27 21:08:57 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2021-12-07 19:22:25 +08:00
|
|
|
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/helpers/completion_stamp.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
struct AUBFamilyMapper {
|
|
|
|
};
|
|
|
|
|
|
|
|
using MMIOPair = std::pair<uint32_t, uint32_t>;
|
|
|
|
using MMIOList = std::vector<MMIOPair>;
|
2018-09-27 21:08:57 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|