mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 15:53:13 +08:00
getDevices -> prepareDeviceEnvironments Change-Id: Ie5bbc0e9f1fe9b1c34ba012249ffa33c4d2ebd05 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
468 B
C++
20 lines
468 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
#include "shared/source/os_interface/device_factory.h"
|
|
|
|
#include "opencl/source/command_stream/create_command_stream_impl.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool prepareDeviceEnvironments(ExecutionEnvironment &executionEnvironment) {
|
|
return prepareDeviceEnvironmentsImpl(executionEnvironment);
|
|
}
|
|
|
|
} // namespace NEO
|