[Assorted-commits] SF.net SVN: assorted: [408] numa-bench/trunk/src/malloc.bash
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-13 18:04:06
|
Revision: 408 http://assorted.svn.sourceforge.net/assorted/?rev=408&view=rev Author: yangzhang Date: 2008-02-13 10:03:09 -0800 (Wed, 13 Feb 2008) Log Message: ----------- updated test driver Modified Paths: -------------- numa-bench/trunk/src/malloc.bash Modified: numa-bench/trunk/src/malloc.bash =================================================================== --- numa-bench/trunk/src/malloc.bash 2008-02-13 17:53:30 UTC (rev 407) +++ numa-bench/trunk/src/malloc.bash 2008-02-13 18:03:09 UTC (rev 408) @@ -2,25 +2,35 @@ set -o errexit -o nounset +make -s malloc + function run { ./malloc "$@" } KB=000 MB=000000 GB=000000000 -# ncores size nreps shuffle par pin local write +# ncores size nreps shuffle par pin local write cross + echo writes -run 16 100$MB 1 0 0 1 0 1 -run 16 1000$MB 1 0 0 1 0 1 -run 16 100$MB 10 0 0 1 0 1 -run 16 100$MB 1 1 0 1 0 1 +run 16 100$MB 1 0 0 1 0 1 0 +run 16 1000$MB 1 0 0 1 0 1 0 +run 16 100$MB 10 0 0 1 0 1 0 +run 16 100$MB 1 1 0 1 0 1 0 echo reads -run 16 1000$MB 1 0 0 1 0 0 -run 16 100$MB 1 1 0 1 0 0 +run 16 1000$MB 1 0 0 1 0 0 0 +run 16 100$MB 1 1 0 1 0 0 0 echo par -run 16 100$MB 1 0 1 1 0 1 -run 16 100$MB 1 1 1 1 0 1 -run 16 100$MB 1 0 1 1 1 1 -run 16 100$MB 1 1 1 1 1 1 +run 16 10$MB 1 0 1 1 0 1 0 +run 16 10$MB 1 1 1 1 0 1 0 +run 16 10$MB 1 0 1 1 1 1 0 +run 16 10$MB 1 1 1 1 1 1 0 + +echo cross +run 16 10$MB 1 0 1 1 0 0 1 +run 16 10$MB 1 1 1 1 0 0 1 +run 16 10$MB 1 0 1 1 0 1 1 +run 16 10$MB 1 1 1 1 0 1 1 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |