mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
26 lines
512 B
C++
26 lines
512 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2023 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "level_zero/core/source/device/device.h"
|
||
|
|
|
||
|
|
#include "shared/source/device/device.h"
|
||
|
|
|
||
|
|
namespace L0 {
|
||
|
|
|
||
|
|
uint32_t Device::getRootDeviceIndex() const {
|
||
|
|
return neoDevice->getRootDeviceIndex();
|
||
|
|
}
|
||
|
|
|
||
|
|
NEO::SourceLevelDebugger *Device::getSourceLevelDebugger() {
|
||
|
|
return getNEODevice()->getSourceLevelDebugger();
|
||
|
|
}
|
||
|
|
|
||
|
|
NEO::DebuggerL0 *Device::getL0Debugger() {
|
||
|
|
return getNEODevice()->getL0Debugger();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace L0
|