#!/bin/sh # This shell runs some benchmarks that Elena ran as described here: # http://hdfeos.org/workshops/ws06/presentations/Pourmal/HDF5_IO_Perf.pdf # $Id: run_bm_elena.sh,v 1.2 2007/12/30 17:19:29 ed Exp $ set -e echo "" echo "*** Testing the benchmarking program bm_file for simple float file, no compression..." ./bm_file -h -d -f 3 -o tst_elena_out.nc -c 0:-1:0:1024:16:256 tst_elena_int_3D.nc ./bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:1024:256:256 tst_elena_int_3D.nc ./bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:512:64:256 tst_elena_int_3D.nc ./bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:512:256:256 tst_elena_int_3D.nc ./bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:256:64:256 tst_elena_int_3D.nc ./bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:256:256:256 tst_elena_int_3D.nc echo '*** SUCCESS!!!' exit 0