2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2018-09-18 09:11:08 +02:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2018-01-19 10:00:51 +01:00
|
|
|
#include "runtime/command_stream/create_command_stream_impl.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "runtime/command_stream/aub_command_stream_receiver.h"
|
|
|
|
|
#include "runtime/command_stream/tbx_command_stream_receiver.h"
|
2018-01-19 10:00:51 +01:00
|
|
|
#include "runtime/command_stream/command_stream_receiver_with_aub_dump.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "runtime/command_stream/device_command_stream.h"
|
|
|
|
|
#include "runtime/helpers/debug_helpers.h"
|
|
|
|
|
#include "runtime/os_interface/device_factory.h"
|
|
|
|
|
#include "runtime/helpers/options.h"
|
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
|
2018-08-08 13:49:09 +02:00
|
|
|
CommandStreamReceiver *createCommandStream(const HardwareInfo *pHwInfo, ExecutionEnvironment &executionEnvironment) {
|
|
|
|
|
return createCommandStreamImpl(pHwInfo, executionEnvironment);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
|
|
|
|
|
2018-08-07 14:46:15 +02:00
|
|
|
bool getDevices(HardwareInfo **hwInfo, size_t &numDevicesReturned, ExecutionEnvironment &executionEnviornment) {
|
|
|
|
|
return getDevicesImpl(hwInfo, numDevicesReturned, executionEnviornment);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
2018-02-14 13:48:31 +01:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
} // namespace OCLRT
|