mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
This is implemented in the loader Change-Id: I88fa59c47f0c0c178bc9e920b4a97e9302b2ffb9 Signed-off-by: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
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
|