mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 15:53:13 +08:00
- hw_info - hw_cmds - kmd_notify_properties - completion_stamp - bxml_generator_glue Related-To: NEO-3982 Change-Id: I3ed3ef81f42596f381e60c19250f6eb1296d47a4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
24 lines
398 B
C++
24 lines
398 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/helpers/completion_stamp.h"
|
|
#include "runtime/aub_mem_dump/aub_mem_dump.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
struct AUBFamilyMapper {
|
|
};
|
|
|
|
using MMIOPair = std::pair<uint32_t, uint32_t>;
|
|
using MMIOList = std::vector<MMIOPair>;
|
|
|
|
} // namespace NEO
|