mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I2a3c4d0abeb285a60136cc665e0dedf3d292a52f Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
19 lines
462 B
C++
19 lines
462 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/create_command_stream_impl.h"
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
#include "runtime/os_interface/device_factory.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment) {
|
|
return getDevicesImpl(numDevicesReturned, executionEnvironment);
|
|
}
|
|
|
|
} // namespace NEO
|