restrict memory usage for nlp tasks

This commit is contained in:
Patrick Jentsch 2021-04-22 08:46:28 +02:00
parent 2813d1a222
commit f7b7da2b1f

2
nlp
View File

@ -82,7 +82,7 @@ class NLPPipeline(WorkflowRunner):
deps = 'setup_output_directory_-_{}'.format(i)
lbl = 'nlp_-_{}'.format(i)
task = self.addTask(command=cmd, dependencies=deps, label=lbl,
nCores=n_cores)
memMb=mem_mb, nCores=n_cores)
nlp_tasks.append(task)
'''