joblib模块中是否有类似于multiprocessing.current_process的功能?

时间:2019-07-09 14:45:01

标签: python multiprocessing python-multithreading pid joblib

我正在尝试查找当前正在运行该函数的worker的索引。

我尝试过os.getpid(),但它给出了PID值。但是我需要工作者的索引,即Process 1

提供的multiprocessing.current_process()的索引为1
process = os.getpid() #gives 2435
id = multiprocessing.current_process()._identity #gives 1

我想要4个工人池的输出[1-4],但使用的不是multiprocessing.current_process()的joblib模块

0 个答案:

没有答案