this post was submitted on 10 Aug 2026
-40 points (10.0% liked)

Programming

28057 readers
447 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
[–] brucethemoose@lemmy.world 9 points 1 day ago* (last edited 1 day ago) (1 children)

…Have you tried ML projects in Rust?

I mean, ML/data science devs use Python because the bajillion underlying libraries and implementations are already there.

It’s not perfect. But that’s fine, because it’s a pretty good prototyping language for researchers, and anything performance sensitive is done in libraries anyway.


If you want a real world example, see: Mistral.rs vs vllm.

[–] socsa@piefed.social 3 points 1 day 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.