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

Task #8437: Use 8 cores for BBS

parent 1cf31217
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,11 @@ class bbs_reducer(BaseRecipe, RemoteCommandRecipeMixIn):
'-p', '--parset',
help="BBS configuration parset"
),
'nthreads': ingredient.IntField(
'--nthreads',
default=8,
help="Number of threads per process"
),
'executable': ingredient.ExecField(
'--executable',
help="The full path to the BBS-reducer executable"
......@@ -115,7 +120,10 @@ class bbs_reducer(BaseRecipe, RemoteCommandRecipeMixIn):
self.inputs['executable'],
self.inputs['parset'],
self.environment
]
],
resources={
"cores": self.inputs['nthreads']
}
)
)
self._schedule_jobs(self.jobs)
......
......@@ -36,6 +36,11 @@ class imager_bbs(BaseRecipe, RemoteCommandRecipeMixIn):
'-p', '--parset',
help="BBS configuration parset"
),
'nthreads': ingredient.IntField(
'--nthreads',
default=8,
help="Number of threads per process"
),
'bbs_executable': ingredient.StringField(
'--bbs-executable',
help="BBS standalone executable (bbs-reducer)"
......@@ -128,7 +133,10 @@ class imager_bbs(BaseRecipe, RemoteCommandRecipeMixIn):
arguments = [self.inputs['bbs_executable'],
self.inputs['parset'],
ms_list_path, parmdb_list_path, sourcedb_list_path]
jobs.append(ComputeJob(host, node_command, arguments))
jobs.append(ComputeJob(host, node_command, arguments,
resources={
"cores": self.inputs['nthreads']
}))
# start and wait till all are finished
self._schedule_jobs(jobs)
......
[ndppp]
nproc = 0
nthreads = 8
[setupparmdb]
nproc = 0
......
......@@ -86,6 +86,7 @@ makesourcedb_path = %(lofarroot)s/bin/makesourcedb
[imager_bbs]
recipe = imager_bbs
bbs_executable = %(lofarroot)s/bin/bbs-reducer
nthreads = 8
[imager_source_finding]
recipe = imager_source_finding
......@@ -106,6 +107,7 @@ parset = %(runtime_directory)s/%(job_name)s/parsets/bbs.parset
instrument_mapfile = %(runtime_directory)s/%(job_name)s/mapfiles/instrument.mapfile
sky_mapfile = %(runtime_directory)s/%(job_name)s/mapfiles/sky.mapfile
data_mapfile = %(runtime_directory)s/%(job_name)s/mapfiles/bbs.mapfile
nthreads = 8
[selfcal_awimager]
recipe = selfcal_awimager
......
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