Skip to content
Snippets Groups Projects
Commit a7e1592a authored by Morris Jette's avatar Morris Jette
Browse files

Merge branch 'slurm-2.3'

parents 906493dd ccb8b419
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,7 @@ documents those changes that are of interest to users and admins. ...@@ -87,6 +87,7 @@ documents those changes that are of interest to users and admins.
-- Backfill scheduling - Add SchedulerParameters configuration parameter of -- Backfill scheduling - Add SchedulerParameters configuration parameter of
"bf_res" to control the resolution in the backfill scheduler's data about "bf_res" to control the resolution in the backfill scheduler's data about
when jobs begin and end. Default value is 60 seconds (used to be 1 second). when jobs begin and end. Default value is 60 seconds (used to be 1 second).
-- Cray - Remove the "family" specification from the GPU reservation request.
* Changes in SLURM 2.3.1 * Changes in SLURM 2.3.1
======================== ========================
......
...@@ -84,9 +84,6 @@ static void _rsvn_write_reserve_xml(FILE *fp, struct basil_reservation *r) ...@@ -84,9 +84,6 @@ static void _rsvn_write_reserve_xml(FILE *fp, struct basil_reservation *r)
fprintf(fp, " <AccelParam type=\"%s\"", fprintf(fp, " <AccelParam type=\"%s\"",
nam_acceltype[accel->type]); nam_acceltype[accel->type]);
if (accel->family && *accel->family)
fprintf(fp, " family=\"%s\"",
accel->family);
if (accel->memory_mb) if (accel->memory_mb)
fprintf(fp, " memory_mb=\"%u\"", fprintf(fp, " memory_mb=\"%u\"",
accel->memory_mb); accel->memory_mb);
......
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