2018-01-19 10:00:51 +01:00
|
|
|
/*
|
2019-02-27 10:06:14 +01:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
2018-01-19 10:00:51 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-19 10:00:51 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-08-07 14:46:15 +02:00
|
|
|
class ExecutionEnvironment;
|
2019-02-27 10:06:14 +01:00
|
|
|
extern CommandStreamReceiver *createCommandStreamImpl(ExecutionEnvironment &executionEnvironment);
|
2019-05-06 12:33:44 +02:00
|
|
|
extern bool getDevicesImpl(size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|