File: mpirunDebug

package info (click to toggle)
openfoam 1912.200626-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 238,940 kB
  • sloc: cpp: 1,159,638; sh: 15,902; ansic: 5,195; lex: 660; xml: 387; python: 282; awk: 212; makefile: 103; sed: 88; csh: 3
file content (359 lines) | stat: -rwxr-xr-x 8,387 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#!/bin/bash
#------------------------------------------------------------------------------
# =========                 |
# \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
#  \\    /   O peration     |
#   \\  /    A nd           | www.openfoam.com
#    \\/     M anipulation  |
#------------------------------------------------------------------------------
#     Copyright (C) 2011-2015 OpenFOAM Foundation
#     Copyright (C) 2017-2018 OpenCFD Ltd.
#------------------------------------------------------------------------------
# License
#     This file is part of OpenFOAM.
#
#     OpenFOAM is free software: you can redistribute it and/or modify it
#     under the terms of the GNU General Public License as published by
#     the Free Software Foundation, either version 3 of the License, or
#     (at your option) any later version.
#
#     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
#     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
#     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
#     for more details.
#
#     You should have received a copy of the GNU General Public License
#     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
#
# Script
#     mpirunDebug
#
# Description
#     Driver script to run mpi jobs with the processes in a separate XTerm
#     or to separate log files.
#     Requires bash on all processors.
#
#------------------------------------------------------------------------------
. $WM_PROJECT_DIR/bin/tools/RunFunctions    # Run functions

usage() {
    exec 1>&2
    while [ "$#" -ge 1 ]; do echo "$1"; shift; done
    cat<<USAGE

Usage: ${0##*/} [OPTION] -np <N> <executable> <args>

options:
  -method=MODE  Run mode
                  (0) normal
                  (1) gdb+xterm
                  (2) gdb
                  (3) log
                  (4) log + xterm
                  (5) valgrind + xterm
                 (5l) valgrind + log
                  (6) gperftools(callgrind)
  -spawn=TYPE   Spawn type: (1) local (2) remote
  -log          Alias for -method=3
  -valgrind     Alias for -method=5l (valgrind + log)
  -local        Alias for -spawn=1
  -yes          Start without additional prompt
  -help         Print the usage

Invoke mpirun but with each process in a separate XTerm, or to separate logfile

USAGE
    exit 1
}

case "$(uname -s)" in
Linux)
    ECHO='echo -e'
    ;;
*)
    ECHO='echo'
    ;;
esac

unset nProcs appName appArgs
unset method spawn optNoAsk

decompDict="system/decomposeParDict"

# parse options
while [ "$#" -gt 0 ]
do
    # echo "$1" 1>&2
    case "$1" in
    -help*)
        usage
        ;;

    -method=[0-6]* | -method=5l)
        method="${1#*=}"
        ;;

    -spawn=[1-2])
        spawn="${1#*=}"
        ;;

    -log)
        method=3
        ;;

    -valgrind)
        method=5l
        ;;

    -local)
        spawn=1
        ;;

    -yes)
        optNoAsk=true
        ;;

    -np)
        nProcs=$2
        shift
        ;;

    -decomposeParDict)
        decompDict=$2
        appArgs="${appArgs}${appArgs:+ }\"$1\""
        ;;

    *)
        if [ -z "$appName" ]
        then
            appName="$1"
        else
            appArgs="${appArgs}${appArgs:+ }\"$1\""
        fi
        ;;
    esac
    shift
done


# No -np specified?
# Try guess from system/decomposeParDict or command-line -decomposeParDict
if [ -z "$nProcs" -a -f "$decompDict" ]
then
    nProcs=$(getNumberOfProcessors $decompDict) || unset nProcs
fi


echo "nProcs=$nProcs"
echo "exec=$appName"
echo "args=$appArgs"

[ -n "$nProcs" ] || usage
[ -n "$appArgs" ] || usage
[ -n "$appName" ] || usage

exec=$(command -v $appName)
[ -x "$exec" ] || {
     echo "Cannot find executable $appName or is not executable"
     usage
}

[ -n "$PWD" ] || PWD=$(pwd)

echo "run $appArgs" > $PWD/gdbCommands
echo "where" >> $PWD/gdbCommands
echo "Constructed gdb initialization file $PWD/gdbCommands"

# Choose method
if [ -z "$method" ]
then
    $ECHO "Choose running method: 0)normal  1)gdb+xterm  2)gdb  3)log  4)log+xterm  5)valgrind+xterm 5l)valgrind+log  6)gperftools(callgrind): \c"
    read method
    case "$method" in
    0 | 1 | 2 | 3 | 4 | 5 | 5l | 6)
        # okay
        ;;
    *)
        usage
        ;;
    esac
fi

# Choose spawn
if [ -z "$spawn" ]
then
    $ECHO "Run all processes local or distributed? 1)local  2)remote: \c"
    read spawn
    case "$spawn" in
    1 | 2)
        # okay
        ;;
    *)
        usage
        ;;
    esac
fi


sourceFoam=false    # Fallback command

# Same as foamEtcFile -mode=uo bashrc
#
# check ~/.$WM_PROJECT/$FOAM_API/
# check ~/.$WM_PROJECT/
# check projectDir/etc/
if [ -n "$WM_PROJECT_DIR" ]
then
    for i in \
        "$HOME/.$WM_PROJECT/$FOAM_API" \
        "$HOME/.$WM_PROJECT" \
        "$WM_PROJECT_DIR/etc" \
        ;
    do
        if [ -f "$i/bashrc" ]
        then
            sourceFoam="$i/bashrc"
            break
        fi
    done
fi

# Source OpenFOAM settings if OpenFOAM environment not set.
# use FOAM_SETTINGS to pass command-line settings

case "$sourceFoam" in
*/bashrc)
    sourceFoam=". $sourceFoam $FOAM_SETTINGS"
    ;;
esac

echo "**sourceFoam: $sourceFoam"

rm -f $PWD/mpirun.schema
touch $PWD/mpirun.schema

proc=0
xpos=0
ypos=0
for ((proc=0; proc<$nProcs; proc++))
do
    procCmdFile="$PWD/processor${proc}.sh"
    procLog="processor${proc}.log"
    xterm="xterm -font fixed -title processor${proc} -geometry 120x15+$xpos+$ypos"

    unset node
    case "$WM_MPLIB" in
    *OPENMPI*)
        node="-np 1 "
        ;;
    esac

    echo "#!/bin/bash" > $procCmdFile
    echo "$sourceFoam" >> $procCmdFile
    echo "cd $PWD" >> $procCmdFile

    case "$method" in
    0)
        echo "${node}$procCmdFile" >> $PWD/mpirun.schema
        echo "$exec $appArgs | tee $procLog" >> $procCmdFile
        ;;
    1)
        echo "${node}$xterm -e $procCmdFile" >> $PWD/mpirun.schema
        echo "gdb -command $PWD/gdbCommands $exec 2>&1 | tee $procLog"
        echo "read dummy"
        ;;
    2)
        echo "${node}$procCmdFile" >> $PWD/mpirun.schema
        echo "gdb -command $PWD/gdbCommands $exec > $procLog 2>&1"
        ;;
    3)
        echo "${node}$procCmdFile" >> $PWD/mpirun.schema
        echo "$exec $appArgs > $procLog 2>&1"
        ;;
    4)
        echo "${node}$xterm -e $procCmdFile" >> $PWD/mpirun.schema
        echo "$exec $appArgs 2>&1 | tee $procLog"
        echo "read dummy"
        ;;
    5)
        echo "${node}$xterm -e $procCmdFile" >> $PWD/mpirun.schema
        echo "valgrind --leak-check=full --show-reachable=yes $exec $appArgs 2>&1 | tee $procLog"
        echo "read dummy"
        ;;
    5l)
        echo "${node}$procCmdFile" >> $PWD/mpirun.schema
        echo "valgrind --leak-check=full --show-reachable=yes $exec $appArgs > $procLog 2>&1"
        ;;
    6)
        echo "${node}$procCmdFile" >> $PWD/mpirun.schema
        echo "CPUPROFILE=log.profiler_$proc $exec $appArgs"
        echo "pprof --callgrind $exec log.profiler_$proc > log.profiler_$proc.callgrind"
        ;;
    esac >> $procCmdFile

    chmod +x $procCmdFile

    let column=proc%6
    if [ $proc -ne 0 -a $column -eq 0 ]
    then
        ((xpos+=600))
        ((ypos=0))
    else
        ((ypos+=200))
    fi
done

for ((proc=0; proc<$nProcs; proc++))
do
    procLog="processor${proc}.log"
    echo "    tail -f $procLog"
done

unset cmd

case "$WM_MPLIB" in
*OPENMPI*)
    cmd="mpirun -app $PWD/mpirun.schema </dev/null"
    ;;
MPICH)
    cmd="mpiexec"
    for ((proc=0; proc<$nProcs; proc++))
    do
        read procCmd

        procXtermCmdFile="$PWD/processor${proc}Xterm.sh"
        echo "#!/bin/sh" > $procXtermCmdFile
        echo "$procCmd" >> $procXtermCmdFile
        chmod +x $procXtermCmdFile
        if [ $proc -ne 0 ]
        then
            cmd="${cmd} :"
        fi
        cmd="${cmd} -n 1 ${procXtermCmdFile}"
    done < $PWD/mpirun.schema
    ;;
*)
    echo
    echo "Unsupported WM_MPLIB setting : $WM_MPLIB"
    usage
    exit 1
esac

echo "Constructed $PWD/mpirun.schema file."
echo
echo "    $cmd"
echo

if [ -n "$optNoAsk" ]
then
    echo "starting: " $(date '+%Y-%m-%d %H:%M:%S %z' 2>/dev/null)
    echo
else
    # Pause before running
    $ECHO "Press return to execute.\c"
    read dummy
fi

exec $cmd

#------------------------------------------------------------------------------