Skip to content
Snippets Groups Projects
Commit f42c16dd authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8437: Allow multithreading in imager_awimager

parent 5686ce39
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,11 @@ class imager_awimager(BaseRecipe, RemoteCommandRecipeMixIn): ...@@ -38,6 +38,11 @@ class imager_awimager(BaseRecipe, RemoteCommandRecipeMixIn):
'-p', '--parset', '-p', '--parset',
help = "The full path to a awimager configuration parset." help = "The full path to a awimager configuration parset."
), ),
'nthreads': ingredient.IntField(
'--nthreads',
default=8,
help="Number of threads per process"
),
'working_directory': ingredient.StringField( 'working_directory': ingredient.StringField(
'-w', '--working-directory', '-w', '--working-directory',
help = "Working directory used on output nodes. Results location" help = "Working directory used on output nodes. Results location"
...@@ -144,7 +149,10 @@ class imager_awimager(BaseRecipe, RemoteCommandRecipeMixIn): ...@@ -144,7 +149,10 @@ class imager_awimager(BaseRecipe, RemoteCommandRecipeMixIn):
self.inputs['fov'], self.inputs['fov'],
] ]
jobs.append(ComputeJob(host, node_command, arguments)) jobs.append(ComputeJob(host, node_command, arguments,
resources={
"cores": self.inputs['nthreads']
}))
self._schedule_jobs(jobs) self._schedule_jobs(jobs)
# ********************************************************************* # *********************************************************************
......
...@@ -77,6 +77,7 @@ nthreads = 8 ...@@ -77,6 +77,7 @@ nthreads = 8
[imager_awimager] [imager_awimager]
recipe = imager_awimager recipe = imager_awimager
executable = %(lofarroot)s/bin/awimager executable = %(lofarroot)s/bin/awimager
nthreads = 8
[imager_create_dbs] [imager_create_dbs]
recipe = imager_create_dbs recipe = imager_create_dbs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment