OPAL (Object Oriented Parallel Accelerator Library)  2024.1
OPAL
run
Go to the documentation of this file.
1 #!/bin/bash
2 
3 # cleanup
4 if stat -t *_results.dat* >/dev/null 2>&1
5 then
6  rm *_results.dat*
7 fi
8 
9 mpirun -np 30 ../../../build/Drivers/homotopy-standalone/homotopy-standalone.exe \
10  --inputfile=Problem.in --outfile=results.dat --outdir=./ \
11  --num-masters=10 --num-coworkers=1 --sol-synch=1 \
12  --num-points=50 --iterations=5 \
13  --num-objectives=2 --num-design-vars=3 \
14  --preprojection=0
15