我正在尝试查找当前正在运行该函数的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模块