mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
https://github.com/intel/compute-runtime/issues/675 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
19 lines
323 B
C++
19 lines
323 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/ze_api.h>
|
|
|
|
#include <string>
|
|
|
|
namespace L0 {
|
|
using zelSetDriverTeardown_fn = ze_result_t (*)();
|
|
|
|
void globalDriverTeardown();
|
|
ze_result_t setDriverTeardownHandleInLoader(const char *);
|
|
} // namespace L0
|