[Assorted-commits] SF.net SVN: assorted: [405] numa-bench/trunk/src/malloc.bash
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-13 08:14:52
|
Revision: 405 http://assorted.svn.sourceforge.net/assorted/?rev=405&view=rev Author: yangzhang Date: 2008-02-13 00:14:57 -0800 (Wed, 13 Feb 2008) Log Message: ----------- new 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 08:14:10 UTC (rev 404) +++ numa-bench/trunk/src/malloc.bash 2008-02-13 08:14:57 UTC (rev 405) @@ -3,17 +3,24 @@ set -o errexit -o nounset function run { - ./malloc 16 $* + ./malloc "$@" } -#echo '--- 100MB * 1, seq ---' -#run 100000000 1 0 -# -#echo '--- 1GB * 1, seq ---' -#run 1000000000 1 0 -# -#echo '--- 100MB * 10, seq ---' -#run 100000000 10 0 +KB=000 MB=000000 GB=000000000 -echo '--- 100MB * 1, rand ---' -run 100000000 1 1 +# ncores size nreps shuffle par pin local write +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 + +echo reads +run 16 1000$MB 1 0 0 1 0 0 +run 16 100$MB 1 1 0 1 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 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |