2010-06-03 21:24:43 +08:00
|
|
|
#!/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..."
|
2017-03-09 08:01:10 +08:00
|
|
|
${execdir}/bm_file -h -d -f 3 -o tst_elena_out.nc -c 0:-1:0:1024:16:256 tst_elena_int_3D.nc
|
|
|
|
${execdir}/bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:1024:256:256 tst_elena_int_3D.nc
|
|
|
|
${execdir}/bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:512:64:256 tst_elena_int_3D.nc
|
|
|
|
${execdir}/bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:512:256:256 tst_elena_int_3D.nc
|
|
|
|
${execdir}/bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:256:64:256 tst_elena_int_3D.nc
|
|
|
|
${execdir}/bm_file -d -f 3 -o tst_elena_out.nc -c 0:-1:0:256:256:256 tst_elena_int_3D.nc
|
2010-06-03 21:24:43 +08:00
|
|
|
echo '*** SUCCESS!!!'
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
exit 0
|