mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-12 00:59:38 +08:00
Change-Id: Ic98a75ed80fb9556465c9a6c93b1b1a9ba628200 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
19 lines
464 B
C++
19 lines
464 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/os_interface/device_factory.h"
|
|
#include "runtime/command_stream/create_command_stream_impl.h"
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment) {
|
|
return getDevicesImpl(numDevicesReturned, executionEnvironment);
|
|
}
|
|
|
|
} // namespace NEO
|