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

Disable pack jobs for Cray/ALPS

parent fb2293c4
No related branches found
No related tags found
No related merge requests found
...@@ -238,6 +238,8 @@ components of a heterogeneous job.</p> ...@@ -238,6 +238,8 @@ components of a heterogeneous job.</p>
<p>Heterogeneous jobs are not supported with Slurm's select/serial plugin.</p> <p>Heterogeneous jobs are not supported with Slurm's select/serial plugin.</p>
<p>Heterogeneous jobs are not supported Cray ALPS systems.</p>
<p class="footer"><a href="#top">top</a></p> <p class="footer"><a href="#top">top</a></p>
<p style="text-align:center;">Last modified 6 June 2017</p> <p style="text-align:center;">Last modified 6 June 2017</p>
......
...@@ -192,6 +192,10 @@ int main(int argc, char **argv) ...@@ -192,6 +192,10 @@ int main(int argc, char **argv)
exit(error_exit); exit(error_exit);
} }
if (job_req_list && is_alps_cray_system()) {
info("Heterogeneous jobs not supported on Cray/ALPS systems");
exit(1);
}
if (_check_cluster_specific_settings(desc) != SLURM_SUCCESS) if (_check_cluster_specific_settings(desc) != SLURM_SUCCESS)
exit(error_exit); exit(error_exit);
......
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