我在 python 3.7 中使用多处理
一些文章说,在 Pool 中使用的进程数是 CPU 内核的数量。
我的 AMD Ryzen CPU 有 8 个内核,可以运行 16 个线程。
那么,进程数应该是8个还是16个呢?
import multiprocessing as mp pool = mp.Pool( processes = 16 ) # since 16 threads are supported?
慕标琳琳
相关分类