tqdm 进度条和多处理 [英] tqdm progress bar and multiprocessing

查看:221
本文介绍了tqdm 进度条和多处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试向我的程序添加进度条,但是,似乎适用于其他人(在其他帖子上)的解决方案对我不起作用.

I'm trying to add a progression bar to my program, however, solutions that seems to works for other (on other posts) do not work for me.

Python 3.6 版.

Python version 3.6.

import multiprocessing as mp
import tqdm

def f(dynamic, fix1, fix2):
    return dynamic + fix1 + fix2

N = 2

fix1 = 5
fix2= 10

dynamic = range(10)

p = mp.Pool(processes = N)

for _ in tqdm.tqdm(p.starmap(f, [(d, fix1, fix2) for d in dynamic]), total = len(dynamic)):
    pass

p.close()
p.join()

知道为什么多处理有效(计算完成),但没有进度条吗?

Any idea why the multiprocessing works (the computation is done), but there is no progress bar?

注意:上面的例子是虚拟的,我的功能不同.

NB: The example above is dummy, my function are different.

其他问题:如何正确中断多处理程序?我通常在单线程中使用的 ctrl+C 似乎会带来一些问题.

Other question: how can I interrupt properly a multiprocessing program? The ctrl+C that I usually do in signle thread seems to pose some issues.

推荐答案

不幸的是,tqdm 不能与 starmap 一起使用.您可以使用以下内容:

Unfortunately, tqdm is not working with starmap. You can use the following:

def f(args):
  arg1, arg2 = args
  ... do something with arg1, arg2 ...


for _ in tqdm.tqdm(pool.imap_unordered(f, zip(list_of_args, list_of_args2)), total=total):
    pass

这篇关于tqdm 进度条和多处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆