I am trying to learn pyopencl, but I ran into issues already in the following very simple code:
import pyopencl as cl
platform = cl.get_platforms()
my_devices = platform[0].get_devices()
print(my_devices)
However, this returns an empty list, while as I understand it it should give my a list containing an object corresponding to my graphics card. How do I troubleshoot this problem?