2018-02-14 13:48:31 +01:00
|
|
|
/*
|
2019-02-19 08:55:11 +01:00
|
|
|
* Copyright (C) 2018-2019 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"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-02-14 13:48:31 +01:00
|
|
|
extern bool overrideCommandStreamReceiverCreation;
|
2018-06-20 18:25:40 +02:00
|
|
|
extern bool overrideDeviceWithDefaultHardwareInfo;
|
2019-02-19 08:55:11 +01:00
|
|
|
extern bool overrideMemoryManagerCreation;
|
2018-02-14 13:48:31 +01:00
|
|
|
|
2019-10-29 08:01:53 +01:00
|
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment, uint32_t rootDeviceIndex);
|
2019-05-06 12:33:44 +02:00
|
|
|
extern bool getDevices(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|