mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 00:58:39 +08:00
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
|