krg_performance: mpi-povray.sh

File mpi-povray.sh, 400 bytes (added by rider, 16 years ago)

mpi-povray performance script

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