mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
20 lines
839 B
Bash
Executable File
20 lines
839 B
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
|
|
|
|
# $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 |