Changes between Version 6 and Version 7 of andes
- Timestamp:
- 05/09/24 13:08:06 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
andes
v6 v7 6 6 7 7 You can add the following lines to `~/.ssh/config` on your local machine: 8 {{{ bash8 {{{ 9 9 #!sh 10 10 Host andes andes8.dartmouth.edu … … 16 16 and replace `USERNAME` by your Dartmouth NetID. Once this is done, you can ssh Andes by simply doing: 17 17 18 {{{ bash18 {{{ 19 19 #!sh 20 20 ssh andes … … 34 34 35 35 On Andes, add the following lines to `~/.bashrc`: 36 {{{ bash36 {{{ 37 37 #!sh 38 38 export ISSM_DIR=PATHTOTRUNK … … 47 47 48 48 Use: 49 {{{ bash49 {{{ 50 50 #!sh 51 51 source ~/.bashrc … … 62 62 Use the following configuration script (adapt to your needs): 63 63 64 {{{ bash64 {{{ 65 65 #!sh 66 66 export CC=mpicc … … 84 84 85 85 To request resources for an interactive job: 86 {{{ bash86 {{{ 87 87 #!sh 88 88 srun --nodes=1 --ntasks-per-node=16 --pty /bin/bash … … 95 95 96 96 Use the following configuration script (adapt to your needs, make sure to NOT include --with-petsc-dir): 97 {{{ bash97 {{{ 98 98 #!sh 99 99 export CC=mpicc … … 127 127 You have to add a file in `$ISSM_DIR/src/m` entitled `andes_settings.m` with your personal settings on your local ism install: 128 128 129 {{{ matlab129 {{{ 130 130 #!m 131 131 cluster.login='yourNetID'; … … 147 147 On Andes, you can use up to 64 cores per node. The more nodes and the longer the requested time, the more you will have to wait in the queue. So choose your settings wisely: 148 148 149 149 {{{ 150 150 #!m 151 151 md.cluster = andes('numnodes',1,'cpuspernode',8);