Answer the question
In order to leave comments, you need to log in
Should there be information about the video card in the OpenCl devices list?
The output of print(cl.get_platforms()[0].get_devices()) is:
Intel(R) Core(TM) i3-2365M CPU @ 1.40GHz 'on 'AMD Accelerated Parallel Processing' at 0x280f510
As you can see it's not here, so Is it that I won't be able to use her resource?
Answer the question
In order to leave comments, you need to log in
Maybe someone will find this information useful. Yes, in the list of platforms there should be info about your video, and the drivers for it should be with OpenCl support. But even without an appropriate video card, you can write code using OpenCl, but under cpu. You can simply create a context like ctx = cl.create_some_context() , this function will select a resource from the list, if there is a need to transfer it to a computer with another video card, you can specify it like this:
ctx = cl.Context([devices[0]]), where devices [0] stores information about the device. My laptop is full of shit and everything works, so most likely if the vidyaha does not support this technology, check the compatibility of the drivers with opencl and reinstall if necessary + install the AMD APP SDK.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question