mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
Related-To: NEO-3007 Change-Id: I27dd4b91e286ba1b75f4b50bec96d98df37983e1 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
18 lines
377 B
C++
18 lines
377 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/device/root_device.h"
|
|
|
|
#include "runtime/device/sub_device.h"
|
|
|
|
namespace NEO {
|
|
|
|
RootDevice::~RootDevice() = default;
|
|
RootDevice::RootDevice(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex) : Device(executionEnvironment, deviceIndex) {}
|
|
|
|
} // namespace NEO
|