2019-03-01 14:58:11 +01:00
|
|
|
/*
|
2020-02-05 11:49:26 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-03-01 14:58:11 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-05 08:30:17 +01:00
|
|
|
#include "core/execution_environment/execution_environment.h"
|
2020-02-05 11:49:26 +01:00
|
|
|
#include "core/os_interface/device_factory.h"
|
2020-02-22 09:28:27 +01:00
|
|
|
|
|
|
|
|
#include "command_stream/create_command_stream_impl.h"
|
2019-03-01 14:58:11 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-03-01 14:58:11 +01:00
|
|
|
|
2019-07-25 17:59:12 +02:00
|
|
|
bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment) {
|
|
|
|
|
return getDevicesImpl(numDevicesReturned, executionEnvironment);
|
2019-03-01 14:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|