mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
17 lines
405 B
C++
17 lines
405 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/debugger/debugger_l0.inl"
|
|
#include "shared/source/debugger/debugger_l0_base.inl"
|
|
|
|
namespace NEO {
|
|
struct ICLFamily;
|
|
using GfxFamily = ICLFamily;
|
|
|
|
template class DebuggerL0Hw<NEO::GfxFamily>;
|
|
static DebuggerL0PopulateFactory<IGFX_GEN11_CORE, NEO::GfxFamily> debuggerGen11;
|
|
} // namespace NEO
|