Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
f42c16dd
Commit
f42c16dd
authored
8 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
Task #8437: Allow multithreading in imager_awimager
parent
5686ce39
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CEP/Pipeline/recipes/sip/master/imager_awimager.py
+9
-1
9 additions, 1 deletion
CEP/Pipeline/recipes/sip/master/imager_awimager.py
CEP/Pipeline/recipes/sip/tasks.cfg.in
+1
-0
1 addition, 0 deletions
CEP/Pipeline/recipes/sip/tasks.cfg.in
with
10 additions
and
1 deletion
CEP/Pipeline/recipes/sip/master/imager_awimager.py
+
9
−
1
View file @
f42c16dd
...
@@ -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
)
# *********************************************************************
# *********************************************************************
...
...
This diff is collapsed.
Click to expand it.
CEP/Pipeline/recipes/sip/tasks.cfg.in
+
1
−
0
View file @
f42c16dd
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment