mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
14 lines
315 B
C++
14 lines
315 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "shared/source/debugger/debugger.h"
|
||
|
|
|
||
|
|
#include "level_zero/core/source/debugger/debugger_l0.h"
|
||
|
|
|
||
|
|
std::unique_ptr<NEO::Debugger> NEO::Debugger::create(HardwareInfo *hwInfo) {
|
||
|
|
return std::make_unique<L0::DebuggerL0>();
|
||
|
|
}
|