mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 03:20:47 +08:00
18 lines
423 B
C++
18 lines
423 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"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
RootDeviceEnvironment::RootDeviceEnvironment() = default;
|
||
|
|
RootDeviceEnvironment::RootDeviceEnvironment(RootDeviceEnvironment &&) = default;
|
||
|
|
RootDeviceEnvironment::~RootDeviceEnvironment() = default;
|
||
|
|
} // namespace NEO
|