Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
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
calibration
pycalibration
Commits
2ced6e5d
Commit
2ced6e5d
authored
3 years ago
by
Thomas Kluyver
Browse files
Options
Downloads
Patches
Plain Diff
Add --slurm-partition CLI parameter to xfel-calibrate
parent
7b94c17a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!469
Add --slurm-partition CLI parameter to xfel-calibrate
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/xfel_calibrate/calibrate.py
+43
-27
43 additions, 27 deletions
src/xfel_calibrate/calibrate.py
with
43 additions
and
27 deletions
src/xfel_calibrate/calibrate.py
+
43
−
27
View file @
2ced6e5d
...
@@ -89,7 +89,12 @@ def make_initial_parser(**kwargs):
...
@@ -89,7 +89,12 @@ def make_initial_parser(**kwargs):
parser
.
add_argument_group
(
'
required arguments
'
)
parser
.
add_argument_group
(
'
required arguments
'
)
parser
.
add_argument
(
'
--reservation
'
,
type
=
str
,
default
=
""
)
parser
.
add_argument
(
'
--slurm-partition
'
,
type
=
str
,
default
=
""
,
help
=
"
Submit jobs in this Slurm partition
"
)
parser
.
add_argument
(
'
--reservation
'
,
type
=
str
,
default
=
""
,
help
=
"
Submit jobs in this Slurm reservation,
"
"
overriding --slurm-partition if both are set
"
)
return
parser
return
parser
...
@@ -573,7 +578,34 @@ def save_executed_command(run_tmp_path, version):
...
@@ -573,7 +578,34 @@ def save_executed_command(run_tmp_path, version):
finfile
.
write
(
'
'
.
join
(
sys
.
argv
))
finfile
.
write
(
'
'
.
join
(
sys
.
argv
))
def
get_launcher_command
(
args
,
temp_path
,
dep_jids
):
def
get_slurm_partition_or_reservation
(
args
)
->
List
[
str
]:
"""
Return sbatch arguments to use a partition or reservation
--reservation and --slurm-partition options have precedence.
Otherwise, if --priority is <=1, it will use a configured reservation
depending on how many nodes are currently free.
"""
ureservation
=
args
[
'
reservation
'
]
upartition
=
args
[
'
slurm_partition
'
]
priority
=
args
[
'
priority
'
]
relevant_resv
=
reservation_char
if
priority
<=
0
else
reservation
if
ureservation
:
return
[
'
--reservation
'
,
ureservation
]
elif
upartition
:
return
[
'
--partition
'
,
upartition
]
elif
(
priority
<=
1
)
and
relevant_resv
:
# Use a reservation if there aren't many general nodes available to us
free
=
int
(
check_output
(
free_nodes_cmd
,
shell
=
True
).
decode
(
'
utf8
'
))
preempt
=
int
(
check_output
(
preempt_nodes_cmd
,
shell
=
True
).
decode
(
'
utf8
'
))
if
free
+
preempt
<
max_reserved
:
return
[
'
--reservation
'
,
relevant_resv
]
# Fallback to using the configured partition (default: exfel)
return
[
'
--partition
'
,
sprof
]
def
get_launcher_command
(
args
,
temp_path
,
dep_jids
)
->
List
[
str
]:
"""
"""
Return a slurm launcher command
Return a slurm launcher command
:param args: Command line arguments
:param args: Command line arguments
...
@@ -582,40 +614,24 @@ def get_launcher_command(args, temp_path, dep_jids):
...
@@ -582,40 +614,24 @@ def get_launcher_command(args, temp_path, dep_jids):
:return: List of commands and parameters to be used by subprocess
:return: List of commands and parameters to be used by subprocess
"""
"""
launcher_slurm
=
launcher_command
.
format
(
temp_path
=
temp_path
)
launcher_slurm
=
launcher_command
.
format
(
temp_path
=
temp_path
)
.
split
()
# calculate number of general nodes available
launcher_slurm
+=
get_slurm_partition_or_reservation
(
args
)
free
=
int
(
check_output
(
free_nodes_cmd
,
shell
=
True
).
decode
(
'
utf8
'
))
preempt
=
int
(
check_output
(
preempt_nodes_cmd
,
shell
=
True
).
decode
(
'
utf8
'
))
ureservation
=
args
[
'
reservation
'
]
priority
=
args
[
'
priority
'
]
if
(
ureservation
==
""
and
(
free
+
preempt
>=
max_reserved
or
priority
>
1
or
reservation
==
""
)):
launcher_slurm
+=
"
--partition {}
"
.
format
(
sprof
)
else
:
this_res
=
reservation
if
priority
==
1
else
reservation_char
if
ureservation
!=
""
:
this_res
=
ureservation
launcher_slurm
+=
"
--reservation={}
"
.
format
(
this_res
)
job_name
=
args
.
get
(
'
slurm_name
'
,
'
xfel_calibrate
'
)
job_name
=
args
.
get
(
'
slurm_name
'
,
'
xfel_calibrate
'
)
launcher_slurm
+=
"
--job-name
{}
"
.
format
(
job_name
)
launcher_slurm
+=
[
"
--job-name
"
,
job_name
]
if
args
.
get
(
'
slurm_priority
'
):
if
args
.
get
(
'
slurm_priority
'
):
launcher_slurm
+=
"
--nice
={}
"
.
format
(
args
.
get
(
'
slurm_priority
'
)
)
launcher_slurm
+=
[
"
--nice
"
,
args
.
get
(
'
slurm_priority
'
)
]
launcher_slurm
+=
"
--mem
{}G
"
.
format
(
args
.
get
(
'
slurm_mem
'
,
'
500
'
))
launcher_slurm
.
append
(
"
--mem
=
{}G
"
.
format
(
args
.
get
(
'
slurm_mem
'
,
'
500
'
))
)
if
len
(
dep_jids
):
if
len
(
dep_jids
):
srun_dep
=
"
--dependency=afterok
"
launcher_slurm
.
append
(
for
jobid
in
dep_jids
:
"
--dependency=afterok:
"
+
"
:
"
.
join
(
str
(
j
)
for
j
in
dep_jids
)
srun_dep
+=
"
:{}
"
.
format
(
jobid
)
)
launcher_slurm
+=
srun_dep
return
launcher_slurm
.
split
()
return
launcher_slurm
def
remove_duplications
(
l
):
def
remove_duplications
(
l
):
...
...
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