BwUniCluster2.0/FAQ - broadwell partition: Difference between revisions
Jump to navigation
Jump to search
S Shamsudeen (talk | contribs) |
S Shamsudeen (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
FAQs concerning best practice of bwUniCluster broadwell (aka "extension" |
FAQs concerning best practice of [[BwUniCluster_Hardware_and_Architecture#Components_of_bwUniCluster|bwUniCluster broadwell partition]] (aka "extension" partition). |
||
__TOC__ |
__TOC__ |
||
Line 6: | Line 6: | ||
== Are there separate login nodes for the bwUniCluster broadwell partition? == |
== Are there separate login nodes for the bwUniCluster broadwell partition? == |
||
* Yes, but primarily to be used for compiling code. |
* Yes, but primarily to be used for compiling code. |
||
⚫ | |||
== How to login to broadwell login nodes? == |
|||
⚫ | |||
$ username@uc1e.scc.kit.edu |
$ username@uc1e.scc.kit.edu |
||
* If you login uc1, even though you can use broadwell nodes using the same procedure as 'compute nodes' |
* If you login to the ''old'' uc1 login nodes, even though you can use broadwell nodes using the same procedure as 'compute nodes'. |
||
example: msub -q singlenode |
|||
⚫ | |||
* But for the compilation you have to use the appropriate flags |
|||
= Compilation = |
= Compilation = |
||
== How to compile code working on broadwell (= extension) nodes? == |
|||
== Q1 == |
|||
On uc1 (= old) login nodes: |
|||
⚫ | |||
<pre> |
|||
icc/ifort -axCORE-AVX2 |
|||
</pre> |
|||
On uc1e (= extension) login nodes: |
|||
<pre> |
|||
icc/ifort -xHost |
|||
</pre> |
|||
== How to compile code working on the old and extension partition? == |
|||
On uc1e (= extension) login nodes: |
|||
<pre> |
|||
icc/ifort -xAVX -axCORE-AVX2 |
|||
</pre> |
|||
== What happens with code compiled for old partition running on the extension partition? == |
|||
Code will run but significantly slower since AVX2 will not be used. Please recompile your code accordingly. |
|||
⚫ | |||
= Job execution = |
= Job execution = |
||
== How to submit jobs to the broadwell (= extension) partition == |
|||
== Q2 == |
|||
The submitted job will be distributed either way to the broadwell nodes if specified correctly, i.e.: |
|||
If the appropriate flags are selected, the submitted jobs can be executed on uc1 and uc1e. |
|||
<pre> |
|||
⚫ | |||
</pre> |
|||
---- |
---- |
||
[[Category:bwUniCluster]] |
[[Category:bwUniCluster]] |
Revision as of 13:52, 12 September 2017
FAQs concerning best practice of bwUniCluster broadwell partition (aka "extension" partition).
Login
Are there separate login nodes for the bwUniCluster broadwell partition?
- Yes, but primarily to be used for compiling code.
How to login to broadwell login nodes?
- You can directly login on broadwell partition login nodes using
$ username@uc1e.scc.kit.edu
- If you login to the old uc1 login nodes, even though you can use broadwell nodes using the same procedure as 'compute nodes'.
Compilation
How to compile code working on broadwell (= extension) nodes?
On uc1 (= old) login nodes:
icc/ifort -axCORE-AVX2
On uc1e (= extension) login nodes:
icc/ifort -xHost
How to compile code working on the old and extension partition?
On uc1e (= extension) login nodes:
icc/ifort -xAVX -axCORE-AVX2
What happens with code compiled for old partition running on the extension partition?
Code will run but significantly slower since AVX2 will not be used. Please recompile your code accordingly.
Job execution
How to submit jobs to the broadwell (= extension) partition
The submitted job will be distributed either way to the broadwell nodes if specified correctly, i.e.:
msub -q multinode