Files
compute-runtime/core/execution_environment/root_device_environment.h
Mateusz Jablonski d408b82a19 Move aub center and command stream receivers to root device environment
resize root device environments to 1 by default

Related-To: NEO-3691, NEO-3857

Change-Id: Idf3d61e84f8265f30381c18216632d0ffb2a16de
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2019-10-28 14:40:43 +01:00

24 lines
483 B
C++

/*
* Copyright (C) 2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "core/helpers/common_types.h"
namespace NEO {
class AubCenter;
struct RootDeviceEnvironment {
RootDeviceEnvironment();
RootDeviceEnvironment(RootDeviceEnvironment &) = delete;
RootDeviceEnvironment(RootDeviceEnvironment &&);
~RootDeviceEnvironment();
std::unique_ptr<AubCenter> aubCenter;
CsrContainer commandStreamReceivers;
};
} // namespace NEO