compute-runtime/shared/source/os_interface/linux/driver_info_linux.cpp

16 lines
271 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/driver_info.h"
namespace NEO {
DriverInfo *DriverInfo::create(OSInterface *osInterface) {
return new DriverInfo();
};
} // namespace NEO