2018-02-14 20:48:31 +08:00
|
|
|
/*
|
2019-02-19 15:55:11 +08:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
2018-02-14 20:48:31 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-14 20:48:31 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-02-14 20:48:31 +08:00
|
|
|
extern bool overrideCommandStreamReceiverCreation;
|
2018-06-21 00:25:40 +08:00
|
|
|
extern bool overrideDeviceWithDefaultHardwareInfo;
|
2019-02-19 15:55:11 +08:00
|
|
|
extern bool overrideMemoryManagerCreation;
|
2018-02-14 20:48:31 +08:00
|
|
|
|
2019-02-27 17:06:14 +08:00
|
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment);
|
2019-05-06 18:33:44 +08:00
|
|
|
extern bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|