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-23 22:44:01 +01:00
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
|
#include "shared/source/os_interface/device_factory.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/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
|
|
|
|
2020-03-20 16:54:09 +01:00
|
|
|
bool getDevices(ExecutionEnvironment &executionEnvironment) {
|
|
|
|
|
return getDevicesImpl(executionEnvironment);
|
2019-03-01 14:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|