We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38cbf46 commit 644aa54Copy full SHA for 644aa54
tools/run_examples.py
@@ -20,7 +20,7 @@ def run_examples(example, pipelines, data_path, plugin=None, rm_base_dir=True):
20
21
plugin_args = {}
22
if plugin == 'MultiProc':
23
- plugin_args['n_procs'] = os.getenv('NIPYPE_NUMBER_OF_CPUS', cpu_count())
+ plugin_args['n_procs'] = int(os.getenv('NIPYPE_NUMBER_OF_CPUS', cpu_count()))
24
25
__import__(example)
26
for pipeline in pipelines:
0 commit comments