mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
34 lines
586 B
Bash
Executable File
34 lines
586 B
Bash
Executable File
#!/bin/sh
|
|
# This is a metadata performance test for netCDF-4.
|
|
# Dennis Heimbigner
|
|
|
|
#PROF=1
|
|
#DEBUG=1
|
|
#MEM=1
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
set -e
|
|
|
|
echo "Testing performance of nc_create and nc_open on file with large metadata"
|
|
|
|
ARGS="--treedepth=6 \
|
|
--ngroups=2 \
|
|
--ngroupattrs=100 \
|
|
--ndims=100 \
|
|
--ntypes=10 \
|
|
--nvars=100 \
|
|
--varrank=2 \
|
|
--nvarattrs=500"
|
|
|
|
echo "timing bigmeta:"
|
|
${execdir}/bigmeta $ARGS
|
|
echo "timing openbigmeta:"
|
|
${execdir}/openbigmeta
|
|
if test "x$PROF" = x1 ; then
|
|
rm -f perftest.txt
|
|
gprof openbigmeta gmon.out >perftest.txt
|
|
fi
|
|
|