mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
This reverts commit 66bf978a13.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
19 lines
398 B
C++
19 lines
398 B
C++
/*
|
|
* Copyright (C) 2023-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/loader/ze_loader.h>
|
|
#include <level_zero/ze_api.h>
|
|
|
|
namespace L0 {
|
|
extern decltype(&zelLoaderTranslateHandle) loaderTranslateHandleFunc;
|
|
extern decltype(&zelSetDriverTeardown) setDriverTeardownFunc;
|
|
|
|
void globalDriverTeardown();
|
|
void globalDriverSetup();
|
|
} // namespace L0
|