mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +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>
19 lines
483 B
C++
19 lines
483 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/execution_environment/root_device_environment.h"
|
|
|
|
#include "runtime/aub/aub_center.h"
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
namespace NEO {
|
|
|
|
RootDeviceEnvironment::RootDeviceEnvironment() = default;
|
|
RootDeviceEnvironment::RootDeviceEnvironment(RootDeviceEnvironment &&) = default;
|
|
RootDeviceEnvironment::~RootDeviceEnvironment() = default;
|
|
} // namespace NEO
|