Skip to content
Snippets Groups Projects
Select Git revision
  • stable-2.0.0
  • main default protected
  • airflow-2.7.0 protected
  • airflow253 protected
  • air251
  • test_docker_op
  • airflow225
  • mptest
  • https-deployment
  • datacat_integration protected
  • datacatalog-integration
  • stable-2.2.2 protected
  • stable-2.2.1 protected
  • stable-2.2.0 protected
  • stable-2.1.4 protected
  • stable-2.1.3 protected
  • stable-2.1.2 protected
  • stable-2.1.1 protected
  • stable-2.1.0 protected
  • stable-2.0.2 protected
  • stable-2.0.1 protected
  • stable-1.0.1 protected
  • stable-1.0 protected
  • stable-0.1 protected
24 results

image_transfer_alt.py

Blame
  • build_mpi_fortran_f08.sh 506 B
    #!/bin/bash
    source $(cd "$(dirname "$0")"; pwd -P)/ci_funcs.sh
    
    # load MPI environment
    load_MPI
    
    # build
    mkdir -p build && cd build
    
    if [[ $? == 0 ]]; then
    
        #export OMPI_FC=gfortran-8 
        #export OMPI_CC=gcc-8 
        #export OMPI_CXX=g++-8 
        #CC=/usr/lib64/mpi/gcc/openmpi3/bin/mpicc CXX=/usr/lib64/mpi/gcc/openmpi3/bin/mpicxx FC=/usr/lib64/mpi/gcc/openmpi3/bin/mpifort ${CMAKE} .. -DCM_ALL_FORTRAN=ON -DCM_ALL_USE_F08=ON
        ${CMAKE} .. -DCM_ALL_FORTRAN=ON -DCM_ALL_USE_F08=ON
        make VERBOSE=1
    fi