Changeset 3071
- Timestamp:
- Oct 5, 2023, 11:36:46 AM (14 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3069 r3071 4234 4234 In 1D, 'q' has been converted from dimension (:,:) to (1,:,:) and 'q2' is now got through the module 'turb_mod'. It allows more generalization and to match dimension in the subroutines. 4235 4235 Related to commit r3066, correction of a bug to write/read a restart/start in 1D and more adaptations of the code. 4236 4237 == 03/10/2023 == AB 4238 Add an example of setup in util/compile to compile utilitary programs on Adastra supercomputer. 4239 Warning: on Adastra, you need to add the netcdf library path to LD_LIBRARY_PATH before running the executable 4240 (export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NETCDF_DIR/lib) -
trunk/LMDZ.MARS/util/compile
r2940 r3071 42 42 # COMPILER="gfortran" 43 43 # COMPILER_OPTIONS="-O2" 44 # And of course the LD_LIBRARY_PATH environ ement variable should contain44 # And of course the LD_LIBRARY_PATH environment variable should contain 45 45 # path "/home/myaccount/netcdf/lib" to be able to run the executable 46 46 # … … 72 72 # COMPILER="ifort" 73 73 # COMPILER_OPTIONS="-O2 -ip" 74 # And of course modules above need be loaded before running the executable 74 75 # 75 76 # Example of a setup on the Irene-Rome supercomputer … … 82 83 # COMPILER="ifort" 83 84 # COMPILER_OPTIONS="-O2 -ip" 85 # And of course modules above need be loaded before running the executable 86 # 87 # Example of a setup on the Adastra supercomputer with ifort 88 # module purge 89 # module load PrgEnv-intel/8.4.0 90 # module load cray-hdf5-parallel/1.12.2.1 91 # module load cray-netcdf-hdf5parallel/4.9.0.1 92 # NETCDF_HOME=$NETCDF_DIR 93 # COMPILER="ifort" 94 # COMPILER_OPTIONS="-O2 -ip" 95 # And of course modules above need be loaded before running the executable 96 # + on Adastra, add the netcdf library path to LD_LIBRARY_PATH before running the executable: 97 # export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NETCDF_DIR/lib 84 98
Note: See TracChangeset
for help on using the changeset viewer.