2018-09-17 21:42:15 +08:00
|
|
|
/*
|
2021-12-23 21:48:36 +08:00
|
|
|
* Copyright (C) 2021 Intel Corporation
|
2018-09-17 21:42:15 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2018-09-17 21:42:15 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2020-03-04 15:51:02 +08:00
|
|
|
struct HardwareInfo;
|
2019-11-07 01:14:30 +08:00
|
|
|
ExecutionEnvironment *getExecutionEnvironmentImpl(HardwareInfo *&hwInfo, uint32_t rootDeviceEnvironments);
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|