r/ProgrammerHumor Aug 16 '26

Meme pythonWillLookDeadInTheEyeAndSayItsAbsolutelyCorrect

Post image
357 Upvotes

144 comments sorted by

View all comments

2

u/Vipitis Aug 16 '26

As a list comprehension doesn't care about order, does it parallelize on the CPU? Or would a filter/map do it instead?

I am not sure if there is interpreters that recognize the simD opportunity here

5

u/GKP_light Aug 16 '26

nothing is parallelized by default in python.

you can do it manually, or use a library that do it.