this post was submitted on 10 Aug 2026
-41 points (9.8% liked)

Programming

28077 readers
330 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

I mean by useless is it's so slow you can't make games or even big projects for GUI, only you can do is AI/ML, Data Science, and basic stuff. I think Rust is better because of its speed and language capabilities?

you are viewing a single comment's thread
view the rest of the comments
[–] socsa@piefed.social 3 points 2 days ago

PyTorch in particular is literally just a dispatching front end for CUDA anyway. It's actually an incredibly powerful tool for GPGPU development, and you will struggle to make faster GPU DSP by hand.

People making these arguments are just incredibly out of date. You can basically use python to trace super optimized GPU compute kernels and then drop them into whatever language you want via torchscript, onnx, trt, whatever.