Revert "Add windows debugger feature check"

This reverts commit 65214e2e4c.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2022-05-19 12:01:28 +02:00
committed by Compute-Runtime-Automation
parent 65e70c7a0f
commit 9cf1fbd627
9 changed files with 2 additions and 152 deletions

View File

@@ -9,15 +9,6 @@
namespace L0 {
std::unique_ptr<NEO::Debugger> DebuggerL0::create(NEO::Device *device) {
auto &hwInfo = device->getHardwareInfo();
if (!hwInfo.capabilityTable.l0DebuggerSupported) {
return std::unique_ptr<DebuggerL0>(nullptr);
}
auto success = initDebuggingInOs(device->getRootDeviceEnvironment().osInterface.get());
if (success) {
auto debugger = debuggerL0Factory[device->getHardwareInfo().platform.eRenderCoreFamily](device);
return std::unique_ptr<DebuggerL0>(debugger);
}
return std::unique_ptr<DebuggerL0>(nullptr);
return std::unique_ptr<NEO::Debugger>(nullptr);
}
} // namespace L0