2018-01-19 17:00:51 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-01-19 17:00:51 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-19 17:00:51 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
|
|
|
|
namespace OCLRT {
|
2018-08-07 20:46:15 +08:00
|
|
|
class ExecutionEnvironment;
|
2018-08-08 19:49:09 +08:00
|
|
|
extern CommandStreamReceiver *createCommandStreamImpl(const HardwareInfo *pHwInfo, ExecutionEnvironment &executionEnvironment);
|
2018-08-07 20:46:15 +08:00
|
|
|
extern bool getDevicesImpl(HardwareInfo **hwInfo, size_t &numDevicesReturned, ExecutionEnvironment &executionEnvironment);
|
2018-06-13 03:54:39 +08:00
|
|
|
} // namespace OCLRT
|