Last updated:
0 purchases
pbarparallel 0.0.3
pbar-parallel
PBar parallel is a simple wrapper around joblib, that shows you how many jobs
have been processed in a simple progress by.
Install
pip install pbar-parallel
Usage
from pbar_parallel import PBarParallel, delayed
def func(x):
return x**2
prl = PBarParallel(n_jobs=48)
result = prl(total=1000)(delayed(func)(i) for i in range(1000))
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.