mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 392e04e2e10ae404caf8c561a7c951e7eaea3c9c
9 lines
146 B
Python
9 lines
146 B
Python
from joblib import Parallel, delayed
|
|
|
|
|
|
def f(i):
|
|
print(i)
|
|
return i*i
|
|
|
|
Parallel(n_jobs=2, backend='loky')(delayed(f)(i) for i in range(3))
|