mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
31 lines
1.2 KiB
Bash
Executable File
31 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# This shell runs some benchmarks that Elena ran as described here:
|
|
# http://hdfeos.org/workshops/ws06/presentations/Pourmal/HDF5_IO_Perf.pdf. Also
|
|
# added tst_files2, which needs to be run from a script because it is
|
|
# dependent on tst_files being run first, and the dependency tacking
|
|
# only works for .sh tests.
|
|
|
|
# Ed Hartnett
|
|
|
|
# Load common values for netCDF shell script tests.
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
# Run benchmarks.
|
|
echo ""
|
|
echo "*** Testing the benchmarking program bm_file for simple float file, no compression..."
|
|
${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
|
|
echo '*** SUCCESS!!!'
|
|
|
|
echo ""
|
|
echo "*** Testing the benchmarking program tst_files2..."
|
|
${execdir}/tst_files2
|
|
echo '*** SUCCESS!!!'
|
|
exit 0
|