mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 08:07:19 +08:00
Change-Id: I34eb993b562c77f56d8fbd51a02ee266c1f76678 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
25 lines
414 B
C++
25 lines
414 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/completion_stamp.h"
|
|
|
|
#include "opencl/source/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
|