compute-runtime/shared/source/os_interface/create_os_time_wddm.cpp

18 lines
344 B
C++

/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/os_time.h"
#include "shared/source/os_interface/windows/os_time_win.h"
namespace NEO {
std::unique_ptr<OSTime> OSTime::create(OSInterface *osInterface) {
return OSTimeWin::create(osInterface);
}
} // namespace NEO