Files
compute-runtime/runtime/dll/get_devices.cpp
Adam Cetnerowski b33ed13750 Fix typo
Change-Id: I2a3c4d0abeb285a60136cc665e0dedf3d292a52f
Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
2019-07-26 09:54:22 +02:00

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