Mercurial > repos > bimib > marea_2_0
changeset 178:42f77c379f45 draft
Uploaded
author | luca_milaz |
---|---|
date | Wed, 03 Jul 2024 19:16:34 +0000 |
parents | 973ecb750940 |
children | eebdc9119bd8 |
files | marea_2_0/flux_sampling.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/marea_2_0/flux_sampling.py Wed Jul 03 19:10:32 2024 +0000 +++ b/marea_2_0/flux_sampling.py Wed Jul 03 19:16:34 2024 +0000 @@ -233,8 +233,7 @@ models_input = ARGS.input.split(",") models_name = ARGS.name.split(",") - #Parallel(n_jobs=num_processors)(delayed(model_sampler)(model_input, model_name) for model_input, model_name in zip(models_input, models_name)) - model_sampler(models_input[0], models_name[0]) + Parallel(n_jobs=num_processors)(delayed(model_sampler)(model_input, model_name) for model_input, model_name in zip(models_input, models_name)) ############################################################################## if __name__ == "__main__":