Parallel Computing
Procedure
- Use PuTTY to log in to the server as the root user.
- Go to the directory where the test case is stored.
cd examples/laminar/cylinder2d
- Compile the test case.
make
- Run the program to perform the computing. The following uses -np=64 and OMP_NUM_THREADS=1 as an example.
mpirun –allow-run-as-root –np 64 –x OMP_NUM_THREADS=1 ./cylinder2d
The generated VTK and gnuplot results are stored in the /tmp directory.
Parent topic: Running Test Cases