Assigning Multiple Cores to a Python Program

前端 未结 3 1559
南笙
南笙 2020-12-06 07:26

I notice when I run my heavily CPU dependant python programs, it only uses a single core. Is it possible to assign multiple cores to the program when I run it?

3条回答
  •  时光说笑
    2020-12-06 07:58

    You have to program explicitly for multiple cores. See the Symmetric Multiprocessing options on this page for the many parallel processing solutions in Python. Parallel Python is a good choice if you can't be bothered to compare the options, look at the examples here.

    Some problems can't take advantage of multiple cores though. Think about how you could possibly run up the stairs faster with the help of three friends. Not going to happen!

提交回复
热议问题