mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Change-Id: Id3133bb1e89a4e8fe41cbdaad152dd8129f35c5d Signed-off: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
24 lines
396 B
C++
24 lines
396 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 "third_party/level_zero/ze_api_ext.h"
|
|
|
|
#include <iostream>
|
|
|
|
extern "C" {
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetInit(
|
|
ze_init_flag_t flags) {
|
|
return L0::ToolsInit::get()->initTools(flags);
|
|
}
|
|
|
|
} // extern C
|