mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
18 lines
410 B
C++
18 lines
410 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2021 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "shared/source/helpers/debug_helpers.h"
|
||
|
|
#include "shared/source/os_interface/os_interface.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
std::vector<std::unique_ptr<HwDeviceId>> OSInterface::discoverDevices(ExecutionEnvironment &executionEnvironment) {
|
||
|
|
return OSInterface::discoverDevicesDrm(executionEnvironment);
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|