File size: 418 Bytes
3e5595b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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);
}
}