mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-09 08:34:37 +00:00
16 lines
418 B
C++
16 lines
418 B
C++
#pragma once
|
|
|
|
#include "OpenCLUtilsCpp_Export.h"
|
|
#include <CL/Utils/Error.hpp>
|
|
|
|
#include <CL/opencl.hpp>
|
|
|
|
namespace cl {
|
|
namespace util {
|
|
bool UTILSCPP_EXPORT supports_extension(const cl::Platform& platform,
|
|
const cl::string& extension);
|
|
|
|
bool UTILSCPP_EXPORT platform_version_contains(
|
|
const cl::Platform& platform, const cl::string& version_fragment);
|
|
}
|
|
}
|