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
|