Extensions OpenCL

Hello there!

How do I know which extensions are available to me? In AMD SDK is a program “clinfo”, NVIDIA has something like that? I did not find.

from what I know is that you can enable all supported extensions and then
check if your desired extension is supported by querying the responsible define.

E.g.:
#ifdef cl_nv_pragma_unroll
printf(“unroll supported\n”);
#else
printf(“unroll NOT supported\n”);
#endif

Best,
eimunic