Difference between revisions of "MITgcm on gadi"

(Initial version)
 
m (Initial version)
Line 1: Line 1:
In general follow the instructions for installation on the main MITgcm website but use this option file. Copy it to your build location and specify with the -optfile option.
+
 
 +
In general follow the instructions for installation on the main MITgcm website but use this option file. Copy it to your build location and specify with the <tt>-optfile</tt> option.
  
 
Something like this
 
Something like this
  
./../../MITgcm/tools/genmake2 -mpi -rootdir=../../../MITgcm -mods=../code/ -optfile=linux_amd64_ifort_gadi -ds
+
<code>./../../MITgcm/tools/genmake2 -mpi -rootdir=../../../MITgcm -mods=../code/ -optfile=linux_amd64_ifort_gadi -ds</code>
  
make depend
+
<code>make depend</code>
  
make -j 16
+
<code>make -j 16</code>
  
Note that the command above use a parallel build (-j option), but specified only 16 simultaneous build commands. Using the default (48) can lead to issues with exceeding the maximum number of processes.
+
Note that the command above use a parallel build (<tt>-j</tt> option), but specified only 16 simultaneous build commands. Using the default (48) can lead to issues with exceeding the maximum number of processes.

Revision as of 23:37, 3 December 2019

In general follow the instructions for installation on the main MITgcm website but use this option file. Copy it to your build location and specify with the -optfile option.

Something like this

./../../MITgcm/tools/genmake2 -mpi -rootdir=../../../MITgcm -mods=../code/ -optfile=linux_amd64_ifort_gadi -ds

make depend

make -j 16

Note that the command above use a parallel build (-j option), but specified only 16 simultaneous build commands. Using the default (48) can lead to issues with exceeding the maximum number of processes.