Files
compute-runtime/runtime/device/root_device.cpp

18 lines
377 B
C++
Raw Normal View History

/*
* 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