2018-02-14 13:48:31 +01:00
|
|
|
/*
|
2020-02-03 13:19:12 +01:00
|
|
|
* Copyright (C) 2018-2020 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
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-03 13:19:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
#include <cstdint>
|
2018-02-14 13:48:31 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2020-02-03 13:19:12 +01:00
|
|
|
class CommandStreamReceiver;
|
|
|
|
|
class ExecutionEnvironment;
|
2018-02-14 13:48:31 +01:00
|
|
|
|
2019-10-29 08:01:53 +01:00
|
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment, uint32_t rootDeviceIndex);
|
2020-03-20 16:54:09 +01:00
|
|
|
extern bool getDevices(ExecutionEnvironment &executionEnvironment);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|