1
Fork 0

Fixed multiproc import

This commit is contained in:
Edgar P. Burkhart 2022-03-15 11:40:06 +01:00
parent e1dc67d089
commit 441eec78d4
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import argparse
import configparser
import logging
from multiprocessing import ThreadPool
from multiprocessing.pool import Pool
import pathlib
import numpy as np
@ -39,7 +39,7 @@ var = {
}
inp.mkdir(exist_ok=True)
with ThreadPool() as pool:
with Pool() as pool:
pool.map(
lambda name, f: np.save(
inp.joinpath(name), f(sws_out.joinpath(name).with_suffix(".dat"))