1 /*
2  * Copyright (C) 2020-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include "shared/source/os_interface/os_library.h"
10 
11 #include <level_zero/ze_api.h>
12 #include <level_zero/zet_api.h>
13 
14 namespace L0 {
15 
16 class PinContext {
17   public:
18     static ze_result_t init();
19 
20   private:
21     static const std::string gtPinLibraryFilename;
22 };
23 
24 } // namespace L0
25