Skip to content
Snippets Groups Projects
Select Git revision
  • 7c328230c28f0d6880cdde23e1a72c0a5203c37e
  • master default protected
  • replication_test
  • dev protected
  • release-1.10 protected
  • 533-integrate-semantic-recommendation-2
  • 556-usage-statistics
  • 553-semantic-recommendation-2
  • 553-semantic-recommendation
  • release-1.9 protected
  • 551-init-broker-service-permissions
  • 549-test-oai-pmh
  • 545-saving-multiple-times-breaks-pid-metadata
  • 499-standalone-compute-service-2
  • 539-load-tests
  • hotfix/helm-chart
  • luca_ba_new_interface
  • 534-bug-when-adding-access-to-user-that-is-not-registered-at-dashboard-service
  • release-1.8 protected
  • 533-integrate-semantic-recommendation
  • feature/openshift
  • v1.10.5 protected
  • v1.10.4 protected
  • v1.10.3 protected
  • v1.10.2 protected
  • v1.10.1 protected
  • v1.10.0-rc13 protected
  • v1.10.0-rc12 protected
  • v1.10.0-rc11 protected
  • v1.10.0-rc10 protected
  • v1.10.0-rc9 protected
  • v1.10.0-rc8 protected
  • v1.10.0-rc7 protected
  • v1.10.0-rc6 protected
  • v1.10.0-rc5 protected
  • v1.10.0-rc4 protected
  • v1.10.0-rc3 protected
  • v1.10.0-rc2 protected
  • v1.10.0rc1 protected
  • v1.10.0rc0 protected
  • v1.10.0 protected
41 results

Dockerfile

Blame
  • run_ens.jet.sh 772 B
    export SLURM_STEP_GRES=none
    
    ##  $SLURM_ARRAY_TASK_ID
    echo "SLURM_ARRAY_TASK_ID:"$SLURM_ARRAY_TASK_ID
    
    EXPNAME="OSSE_v1.10_test"
    NAMELIST="namelist.input"
    
    USERDIR=/jetfs/home/lkugler/
    DATADIR=$USERDIR
    SRC_DIR=/jetfs/home/lkugler/compile/WRF/WRF-v4.2/run/
    IDEAL_EXE=/jetfs/home/lkugler/compile/bin/ideal.exe
    WRF_EXE=/jetfs/home/lkugler/compile/bin/wrf-v4.2_v1.10.dmpar.exe
    
    
    # VSC support: be careful with correct pinning !
    pinning=(0-11 12-23 24-35 36-47)
    for ((n=1; n<=4; n++))
    do
        RUNDIR=$USERDIR/run_WRF/$EXPNAME/$IENS
        cd $RUNDIR
        rm -r wrfout_d01_*
        echo 'mpirun -genv I_MPI_PIN_PROCESSOR_LIST=${pinning[$n]} -np 12 ./wrf.exe >/dev/null 2>&1'
        mpirun -genv I_MPI_PIN_PROCESSOR_LIST=${pinning[$n]} -np 12 ./wrf.exe >/dev/null 2>&1
        cd ../
    done
    wait