22 lines
347 B
C++
22 lines
347 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/tools/source/tools_init.h"
|
|
#include <level_zero/zet_api.h>
|
|
|
|
#include <iostream>
|
|
|
|
extern "C" {
|
|
|
|
__zedllexport ze_result_t __zecall
|
|
zetInit(
|
|
ze_init_flag_t flags) {
|
|
return L0::ToolsInit::get()->initTools(flags);
|
|
}
|
|
|
|
} // extern C
|