Changes between Version 6 and Version 7 of andes


Ignore:
Timestamp:
05/09/24 13:08:06 (12 months ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • andes

    v6 v7  
    66
    77You can add the following lines to `~/.ssh/config` on your local machine:
    8 {{{bash
     8{{{
    99#!sh
    1010Host andes andes8.dartmouth.edu
     
    1616and replace `USERNAME` by your Dartmouth NetID. Once this is done, you can ssh Andes by simply doing:
    1717
    18 {{{bash
     18{{{
    1919#!sh
    2020ssh andes
     
    3434
    3535On Andes, add the following lines to `~/.bashrc`:
    36 {{{bash
     36{{{
    3737#!sh
    3838export ISSM_DIR=PATHTOTRUNK
     
    4747
    4848Use:
    49 {{{bash
     49{{{
    5050#!sh
    5151source ~/.bashrc
     
    6262Use the following configuration script (adapt to your needs):
    6363
    64 {{{bash
     64{{{
    6565#!sh
    6666export CC=mpicc
     
    8484
    8585To request resources for an interactive job:
    86 {{{bash
     86{{{
    8787#!sh
    8888srun --nodes=1 --ntasks-per-node=16 --pty /bin/bash
     
    9595
    9696Use the following configuration script (adapt to your needs, make sure to NOT include --with-petsc-dir):
    97 {{{bash
     97{{{
    9898#!sh
    9999export CC=mpicc
     
    127127You have to add a file in `$ISSM_DIR/src/m` entitled `andes_settings.m` with your personal settings on your local ism install:
    128128
    129 {{{matlab
     129{{{
    130130#!m
    131131cluster.login='yourNetID';
     
    147147On 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:
    148148
    149  {{{
     149{{{
    150150#!m
    151151md.cluster = andes('numnodes',1,'cpuspernode',8);