Ignore:
Timestamp:
Jul 9, 2024, 2:46:21 PM (2 months ago)
Author:
abarral
Message:

Update/add arch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/arch/arch-X64_ADASTRA-GNU.env

    r4924 r5035  
    1 # Compile and running environnement at Adastra
    2 set +e
     1#!/bin/bash
    32module purge
    4 module load craype-x86-genoa
    5 module load craype-network-ofi
    6 module load libfabric/1.15.2.0
    7 module load PrgEnv-gnu/8.3.3
    8 module load cray-dsmml/0.2.2
    9 module load cray-libsci/23.02.1.1
    10 module load cray-mpich/8.1.21
    11 module load craype/2.7.19
    12 module load cray-hdf5-parallel/1.12.2.1
    13 module load cray-netcdf-hdf5parallel/4.9.0.1
    14 module load cray-fftw/3.3.10.3
     3module load PrgEnv-gnu
     4module load cray-hdf5-parallel
     5module load netcdf-hdf5parallel/gnu/10.3
     6
     7# netcdf-hdf5parallel has weird naming conventions => hotfix...
     8# Used in netcdf95 cmake compilation
     9rm -rf netcdf-hdfparallel-hotfix
     10mkdir -p netcdf-hdfparallel-hotfix
     11cp -r /opt/cray/pe/netcdf-hdf5parallel/4.9.0.5/gnu/10.3/lib/pkgconfig/netcdf*_parallel.pc netcdf-hdfparallel-hotfix
     12cd netcdf-hdfparallel-hotfix || exit 1
     13mv netcdf-fortran_parallel.pc netcdf-fortran.pc
     14PKG_CONFIG_PATH="$(readlink -f .):$PKG_CONFIG_PATH"
     15# Another similar hotfix to find mpich.pc
     16PKG_CONFIG_PATH="/opt/cray/pe/mpich/8.1.28/ofi/crayclang/16.0/lib/pkgconfig/:$PKG_CONFIG_PATH"
     17export PKG_CONFIG_PATH
     18cd - || exit 1
Note: See TracChangeset for help on using the changeset viewer.