2019-03-01 21:58:11 +08:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-03-01 21:58:11 +08:00
|
|
|
|
2019-05-06 18:33:44 +08:00
|
|
|
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnviornment) {
|
|
|
|
return getDevicesImpl(numDevicesReturned, executionEnviornment);
|
2019-03-01 21:58:11 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|