1

我正在尝试使用 tqdm 和多处理来运行一系列值,并将相同的范围值传递给 im 作为参数调用的类。我似乎无法在网上找到任何有用的关于如何将迭代的参数传递给函数调用(在我的情况下我调用一个类函数),我希望其他人可能有一个想法?

with Pool(processes=8) as p:
    max_ = 5
    with tqdm(total=max_) as pbar:
        for k, _ in tqdm(o.function('iterable-here'), range(1, max_)):
            pbar.update()
4

0 回答 0