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