2018-02-14 13:48:31 +01:00
|
|
|
/*
|
2018-09-18 09:11:08 +02:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-02-14 13:48:31 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-14 13:48:31 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
|
extern bool overrideCommandStreamReceiverCreation;
|
2018-06-20 18:25:40 +02:00
|
|
|
extern bool overrideDeviceWithDefaultHardwareInfo;
|
2018-02-14 13:48:31 +01:00
|
|
|
|
2018-08-08 13:49:09 +02:00
|
|
|
extern CommandStreamReceiver *createCommandStream(const HardwareInfo *pHwInfo, ExecutionEnvironment &executionEnvironment);
|
2018-08-07 14:46:15 +02:00
|
|
|
extern bool getDevices(HardwareInfo **hwInfo, size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
2018-06-12 21:54:39 +02:00
|
|
|
} // namespace OCLRT
|