Files
compute-runtime/shared/source/pin/pin.h
Mateusz Jablonski 579af57161 refactor: don't call OsLibrary::load directly, use function pointer
this allows mocking this call in ULT

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2024-08-20 08:59:26 +02:00

22 lines
319 B
C++

/*
* Copyright (C) 2020-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <string>
namespace NEO {
class PinContext {
public:
static bool init(const std::string &gtPinOpenFunctionName);
private:
static const std::string gtPinLibraryFilename;
};
} // namespace NEO