Make root device environments a vector

Change-Id: I62addd87606c8c87e3b9db53c9179bd5f09df30b
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2019-10-23 16:17:06 +02:00
committed by sys_ocldev
parent ca62509a27
commit 9924fa34de
6 changed files with 15 additions and 14 deletions

View File

@@ -55,10 +55,10 @@ class ExecutionEnvironment : public ReferenceTrackedObject<ExecutionEnvironment>
MOCKABLE_VIRTUAL CompilerInterface *getCompilerInterface();
BuiltIns *getBuiltIns();
std::unique_ptr<RootDeviceEnvironment[]> rootDeviceEnvironments;
std::unique_ptr<OSInterface> osInterface;
std::unique_ptr<MemoryOperationsHandler> memoryOperationsInterface;
std::unique_ptr<MemoryManager> memoryManager;
std::vector<RootDeviceEnvironment> rootDeviceEnvironments;
std::unique_ptr<AubCenter> aubCenter;
CsrContainer commandStreamReceivers;
std::unique_ptr<BuiltIns> builtins;