Can anybody explain why CUDA and Rocm are necessary and why OpenCL isn't the solution?
from onlinepersona@programming.dev to programming@programming.dev on 02 Apr 16:40
https://programming.dev/post/27945302

I’ve read multiple times that CUDA dominates, mostly because NVIDIA dominates. Rocm is the AMD equivalent, but OpenCL also exists. From my understanding, these are technologies used to program graphics cards - always thought that shaders were used for that.

There is a huge gap in my knowledge and understanding about this, so I’d appreciate somebody laying this out for me. I could ask an LLM and be misguided, but I’d rather not 🤣

Anti Commercial-AI license

#programming

threaded - newest

mundane@feddit.nu on 02 Apr 17:12 next collapse

CUDA can (depending on circumstances) give slightly better performance than OpenCL. So if you know that your target hosts will have Nvidia GPUs ( for example ML in your own data centers) that might be beneficial.

OpenCL will run on multiple platforms so if you don’t know the target hosts (for example consumer hardware for gaming) this makes life easier for the developer.

The frameworks and libraries around the different specs differ, so if there is a library that is useful for your use case, that will effect your decision to pick one over the other

L0rdMathias@sh.itjust.works on 02 Apr 17:13 next collapse

I can’t say as to why things are how they are. It’s likely just the usual open source lagging behind; These technologies are fairly new and the corporate stronghold around them is strong.

Shaders are programs that run on graphics cards to act as shortcuts for common graphic scenarios, they are not programs that dictate how graphic cards function. That could clear up some confusion.

dneaves@lemmy.world on 02 Apr 17:18 next collapse

I’d imagine it’s as simple as Nvidia doesn’t want to support OpenCL because CUDA forces people into their market, and AMD doesn’t want to support OpenCL because Rocm forces people into their market. Open/free standards are great for smaller players in a market, but in the graphics space I don’t think a smaller player in the market exists, and if they do, no one seems interested in them.

lime@feddit.nu on 02 Apr 17:31 collapse

rocm is open source as well. amd have historically been the ones pushing for open standards in these things, probably because they’ve never been market leaders.

skip0110@lemm.ee on 02 Apr 17:24 next collapse

AFIK it’s only NVIDIA that allows containers shared access to a GPU on the host.

With the majority of code being deployed in containers, you end up locked into the NVIDIA ecosystem even if you use OpenCL. So I guess people just use CUDA since they are limited by the container requirement anyways.

That’s from my experience using OpenGL headless. If I’m wrong please correct me; I’d prefer being GPU agnostic.

moonpiedumplings@programming.dev on 02 Apr 18:03 next collapse

AFIK it’s only NVIDIA that allows containers shared access to a GPU on the host.

This cannot be right. I’m pretty sure that it is possible to run OpenCL applications in containers that are sharing a GPU.

I should test this if I have time. My plan was to use a distrobox container since that shares the GPU by default and run something like lc0 to see if opencl acceleration works.

Now where is my remindme bot? (I won’t have time).

skip0110@lemm.ee on 02 Apr 19:36 collapse

You really piqued my interest. I use docker/podman.

W/ an AMD graphics card, eglinfo on the host shows the card is AMD Radeon and driver is matching that.

In the container, without --gpus=all, it shows the card is unknown and the driver is “swrast” (so just CPU fallback).

To make --gpus=all work, it gives the error

docker: Error response from daemon: could not select device driver “” with capabilities: [[gpu]

I was doing a bad job searching before. I found that AMD can share the GPU, it just works a little differently in terms of how to launch the container. rocm.docs.amd.com/projects/…/amdgpu-install.html#…

But sadly my AMD GPU is too old/junk to have current driver support.

Anyways, appreciate the reply! Now I can mod my code to run on cheaper cloud instances.

(Note I’m an OpenGL/3D app developer, but probably OpenCL works about the same architecturally)

mehdi_benadel@lemmy.balamb.fr on 02 Apr 22:33 collapse

Check implementations before saying shit like that. Nvidia has historical bad open source driver support, which makes it hard for people to implement vGPU usage. They actually actively blocked us from using their cards remotely, until COVID hit. Then they gave out the code to do it. They are still limiting customer level cards usage on virtualization cases. They had to give out a toolkit for us to be able to use their cards on docker. Other cards can be accessed just by sharing dev driver files to the volume.

mehdi_benadel@lemmy.balamb.fr on 02 Apr 22:35 next collapse

Check Wolf implementation for context. It’s a mess with Nvidia.

games-on-whales.github.io/wolf/…/quickstart.html

skip0110@lemm.ee on 02 Apr 22:44 collapse

Can you share sample code I can try or documentation I can follow of using an AMD GPU in that way (shared, virtualized, using only open source drivers)?

mehdi_benadel@lemmy.balamb.fr on 03 Apr 00:55 collapse

Check Wolf (in my other comment), it’s the best example of GPU virtualization usage.

Otherwise you can check other docker images using GPU for computing, like jellyfin for instance, or nextcloud recognize, nextcloud memories and its transcoding instance,…

moonpiedumplings@programming.dev on 02 Apr 18:09 next collapse

Now, I don’t write code. So I can’t really tell you if this is the truth or not — but:

I’ve heard from software developers on the internet that OpenCL is much more difficult and less accessible to write than CUDA code. CUDA is easier to write, and thus gets picked up and used by more developers.

In addition to that, someone in this thread mentions CUDA “sometimes” having better performance, but I don’t think it’s only sometimes. I think that due to the existence of the tensor cores (which are really good at neural nets and matrix multiplication), CUDA has vastly better performance when taking advantage of those hardware features.

Tensor cores are not Nvidia specific, but they are the “most ahead”. They have the most in their GPU’s, and probably most importantly: CUDA only supports Nvidia, and therefore by extension, their tensor cores.

There are alternative projects, like how leela chess zero mentions tensorflow for google’s Tensor Processing Units, but those aren’t anywhere near as popular due to performance and software support.

Kissaki@programming.dev on 02 Apr 19:55 next collapse

ROCm is an implementation/superset of OpenCL.

ROCm ships its installable client driver (ICD) loader and an OpenCL implementation bundled together. As of January 2022, ROCm 4.5.2 ships OpenCL 2.2

Shaders are computational visual [post-]processing - think pixel position based adjustments to rendering.

OpenCL and CUDA are computation frameworks where you can use the GPU for other processing than rendering. You can use it for more general computing.

nVidia has always been focusing on proprietary technology. Introduce a technology, and try to make it a closed market, where people are forced to buy and use nVidia for it. AMD has always been supporting and developing open standards as a counterplay to that.

InverseParallax@lemmy.world on 03 Apr 03:27 next collapse

Because Nvidia wrote an absolute fuck-ton of their Cuda stack to make it far more performant for many common tasks out of the box.

Early opencl implementations absolutely sucked.

the_q@lemm.ee on 03 Apr 04:48 next collapse

Nvidia has the money and influence to make CUDA a standard. Popular means better…

Kolanaki@pawb.social on 03 Apr 04:52 collapse

Calling nVidia popular seems wrong. There’s not much choice in this space and that choice is pushed further in their favor by anticompetitive bullshit.

coffee_is_life@programming.dev on 03 Apr 18:44 collapse

I’m pretty sure OpenCL was just a play by Apple to standardize heterogeneous compute across different hardware companies and prevent CUDA from dominating

But then they deprecated it in favor of Metal which is just an Apple-specific thing. Probably because they were going to their own hardware anyway

So the main company pushing OpenCL is no longer pushing it, pretty sure it’s dying out at this point