[BACK]Return to scaleread.sh CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests / src

File: [Development] / xfs-cmds / xfstests / src / scaleread.sh (download)

Revision 1.2, Wed Nov 9 02:48:08 2005 UTC (11 years, 11 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -28 lines

Update copyright annotations and license boilerplates to correspond with SGI Legals preferences.
Merge of master-melb:xfs-cmds:24326a by kenmcd.

#!/bin/sh
#
# Copyright (c) 2003-2004 Silicon Graphics, Inc.  All Rights Reserved.
#

help() {
cat <<END
Measure scaling of multiple cpus readin the same set of files.
(NASA testcase).
	Usage:  $0 [-b <bytes>] [-f <files>] [-s] [-B] [-v] cpus ...
			or
		$0 -i [-b <bytes>] [-f <files>] 

	  -b file size in bytes
	  -f number of files
	  -s keep processes synchronized when reading files
	  -B use bcfree to free buffer cache pages before each run
END
exit 1
}

err () {
	echo "ERROR - $*"
	exit 1
}

BYTES=8192
FILES=10
SYNC=""
VERBOSE=""
STRIDED=""
BCFREE=0
INIT=0
OPTS="f:b:vsiSBH"
while getopts "$OPTS" c ; do
	case $c in
		H)  help;;
		f)  FILES=${OPTARG};;
		b)  BYTES=${OPTARG};;
		i)  INIT=1;;
		B)  BCFREE=1;;
		S)  STRIDED="-S";;
		s)  SYNC="-s";;
		v)  VERBOSE="-v";;
		\?) help;;
	esac

done
shift `expr $OPTIND - 1`

if [ $INIT -gt 0 ] ; then
	echo "Initializing $BYTES bytes, $FILES files"
	./scaleread $VERBOSE -i -b $BYTES -f $FILES 
	sync
else
	[ $# -gt 0 ] || help
	echo "Testing $BYTES bytes, $FILES files"
	for CPUS in $* ; do
		[ $BCFREE -eq 0 ] || bcfree -a
		/usr/bin/time -f "$CPUS:  %e wall,    %S sys,   %U user" ./scaleread \
			$SYNC $STRIDED $VERBOSE -b $BYTES -f $FILES -c $CPUS
	done
fi