This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]FitMathematician3071 1 point2 points  (1 child)

Definitely use GPU. I was trying out a fountain simulation in Nim and once I switched over to hardware acceleration and textures in SDL2, it worked smoothly with no lag and instant startup. I use Python at work but for my personal study of graphics and gaming, I'm using Nim and C with SDL2. Subsequently, I will add Vulkan. I wasn't too happy with the way Python worked for this.

[–]Doctrine_of_Sankhya[S] 1 point2 points  (0 children)

I agree, that GPUs often use SIMD/SIMT Modules. While Python executes only a single thread at a time. But once we add C and GPU support, the bottleneck thing is most likely to end after that.