Is OpenCL possible with the current Nvidia driver?

devel/ocl-icd says it will work with a non-free ICD, and I've seen people get nvidia.icd from... wherever (presumably some nvidia binary driver package)... on linux, so perhaps the mechanism is the same. I couldn't find any specific examples of this working, though.
 
Nvidia's OpenCL is implemented through CUDA.
I guess that means not. Then I'll use virtualization or sell this Nvidia card and buy an AMD one. Using WebGL appears to be an alternative too, but I guess it is very slow.
 
WebGL has nothing to do with general-purpose GPU computing. Vulkan could be used for that purpose in theory, but you'll have to implement everything from scratch yourself, which is probably not what you are looking for.

I'm kind of curious what kind of small project you have in mind. You obviously didn't bother to do any research on the topic, so there no reason for me to believe you actually need GPU anything.
 
WebGL has nothing to do with general-purpose GPU computing. Vulkan could be used for that purpose in theory, but you'll have to implement everything from scratch yourself, which is probably not what you are looking for.

I'm kind of curious what kind of small project you have in mind. You obviously didn't bother to do any research on the topic, so there no reason for me to believe you actually need GPU anything.
Well Tensorflow can run on CPU too, I just have a spare GPU I haven't sold, so I thought I use that instead of stressing the CPU. It is a sequential pattern mining project, I want to compare normal algorithms like SPADE or PrefixSpan to machine learning.

Looks like you are not up to date either:

https://github.com/tensorflow/tfjs
A WebGL accelerated JavaScript library for training and deploying ML models.
 
Back
Top