krg_performance: mpi-povray.sh
File mpi-povray.sh, 400 bytes (added by rider, 17 years ago) |
---|
Line | |
---|---|
1 | #!/bin/bash |
2 | # Program: |
3 | # MPI-POVRay scenes rendering demo |
4 | # History: |
5 | # 2008/03/21 VER.1 |
6 | |
7 | PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin~/bin |
8 | export PATH |
9 | |
10 | for file in $HOME/povray_demo/performance_demo/*.pov |
11 | do |
12 | mpirun -machinefile ~/machine_file -nolocal -np 28 /opt/povray31/source/mpi-unix/mpi-x-povray -i$file +L/opt/povray31/include +w1024 +h768 |
13 | done |
14 | exit 0 |