mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
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>
24 lines
483 B
C++
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
|