New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
sh_bench in NEMO/branches/2019/dev_r11085_ASINTER-05_Brodeau_Advanced_Bulk/tests/BENCH/EXPREF – NEMO

source: NEMO/branches/2019/dev_r11085_ASINTER-05_Brodeau_Advanced_Bulk/tests/BENCH/EXPREF/sh_bench @ 11838

Last change on this file since 11838 was 11831, checked in by laurent, 4 years ago

Update the branch to r11830 of the trunk!

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1#!/bin/bash
2set -u
3#set -xv
4
5resolution=${1:?"you must provide the resolution: 1 025 or 12"}
6mincore=${2:-1} # minimum number of core to be tested
7maxcore=${3:-0} # maximum number of core to be tested
8
9machine=$( hostname | sed -e "s/[0-9]*//g" )
10case $machine in
11    "jean-zay")     ncore_node=40 ;;
12    "beaufixlogin") ncore_node=40 ;;
13    "curie")        ncore_node=16 ;;
14    "irene")        ncore_node=48 ;;
15    *) echo "you must add your machine \"$machine\" with its number of cores per node" ; exit 1 ;;
16esac
17
18[ $mincore -eq 1 ] && targetnb=$ncore_node || targetnb=$mincore
19#
20# build the list of experiences:
21# must be a multiple of ncore_node and as close as possible of the targeted number of core
22#
23n1=0
24list=""
25
26# Prepare gnuplot data file
27dateref=$( date "+%Y%m%d-%Hh%Mm%Ss" )
28echo "# nb_proc    jpi    jpj" > gnuplot_tbc_${resolution}_${dateref}.dat
29nbl=$( cat best_jpni_jpnj_eorca${resolution} | wc -l )
30for ll in $( seq 1 $nbl )
31do
32    line=$( sed -n ${ll}p best_jpni_jpnj_eorca${resolution} )    # for each line
33    nn=$( echo $line | sed -e "s/.*nb_cores \([0-9]*\).*/\1/" )  # get the number of core
34    [ $maxcore -gt 1 -a $nn -gt $maxcore ] && break              # if below $maxcore (if specified)
35        if [ $(( $nn % $ncore_node )) -eq 0 ]                    # if it is a multiple of $ncore_node
36        then
37            if [ $nn -lt $targetnb ]
38            then
39                n1=$nn       # store the number of core
40                line1=$line  # store the line
41            else
42                [ $(( $targetnb - $n1 )) -le $(( $nn -$targetnb )) ] && line=$line1   # keep the previous line
43                echo $line
44                nb=$( echo $line | sed -e "s/[^(]*( \([0-9]*\) x \([0-9]*\) .*/\1*\2/" ) # get jpni*jpnj
45                list="${list} ${nb}"
46                targetnb=$(( $targetnb * 2 ))
47                subsize=$( echo $line | awk {'printf "%d   %d", $11, $13'})
48                corenb=$( echo $line | awk {'printf "%d", $2'})
49                echo "$corenb  $subsize" >> gnuplot_tbc_${resolution}.dat
50            fi
51        fi
52done
53echo $list
54
55for cores in $list
56do
57    ./submit_bench $cores $ncore_node ${resolution} ${dateref}
58done
59
Note: See TracBrowser for help on using the repository browser.