blob: b85aa173d45ffaffc22dc7420316d54bf0c857c2 [file] [log] [blame]
bart8785c122008-05-29 08:34:27 +00001#!/bin/bash
2
3########################
4# Function definitions #
5########################
6
bartf33ce892008-06-07 11:40:14 +00007source "$(dirname $0)/measurement-functions"
bart8785c122008-05-29 08:34:27 +00008
9function run_test {
bart8a2cd9b2008-06-19 07:49:49 +000010 local tmp avg1 stddev1 avg2 stddev2 avg4 stddev4 p
bart8785c122008-05-29 08:34:27 +000011
12 tmp="/tmp/test-timing.$$"
bart334db5e2008-06-05 10:14:53 +000013
bartd5b0f6c2009-04-25 11:40:09 +000014 rm -f "${tmp}"
bart8a2cd9b2008-06-19 07:49:49 +000015 p=1
bart3b7e2e32008-07-10 14:07:22 +000016 test_output="${1}-p${p}.out" measure_runtime "$@" -p${psep}${p} "${test_args}" | avgstddev > "$tmp"
bartd5b0f6c2009-04-25 11:40:09 +000017 read avg1 stddev1 vsz1 vszdev1 rest < "$tmp"
barta5a95dd2008-06-18 14:15:11 +000018 echo "Average time: ${avg1} +/- ${stddev1} seconds." \
19 " VSZ: ${vsz1} +/- ${vszdev1} KB"
bart8785c122008-05-29 08:34:27 +000020
bartd5b0f6c2009-04-25 11:40:09 +000021 if [ "${rest}" != "" ]; then
22 echo "Internal error ($rest)"
23 exit 1
24 fi
25
26 rm -f "${tmp}"
bart8a2cd9b2008-06-19 07:49:49 +000027 p=2
bart3b7e2e32008-07-10 14:07:22 +000028 test_output="${1}-p${p}.out" measure_runtime "$@" -p${psep}${p} "${test_args}" | avgstddev > "$tmp"
bartd5b0f6c2009-04-25 11:40:09 +000029 read avg2 stddev2 vsz2 vszdev2 rest < "$tmp"
barta5a95dd2008-06-18 14:15:11 +000030 echo "Average time: ${avg2} +/- ${stddev2} seconds." \
31 " VSZ: ${vsz2} +/- ${vszdev2} KB"
bart0d4e5c22008-06-07 10:42:52 +000032
bartd5b0f6c2009-04-25 11:40:09 +000033 if [ "${rest}" != "" ]; then
34 echo "Internal error ($rest)"
35 exit 1
36 fi
37
38 rm -f "${tmp}"
bart8a2cd9b2008-06-19 07:49:49 +000039 p=4
bart3b7e2e32008-07-10 14:07:22 +000040 test_output="${1}-p${p}.out" measure_runtime "$@" -p${psep}${p} "${test_args}" | avgstddev > "$tmp"
bartd5b0f6c2009-04-25 11:40:09 +000041 read avg4 stddev4 vsz4 vszdev4 rest < "$tmp"
barta5a95dd2008-06-18 14:15:11 +000042 echo "Average time: ${avg4} +/- ${stddev4} seconds." \
43 " VSZ: ${vsz4} +/- ${vszdev4} KB"
bartd5b0f6c2009-04-25 11:40:09 +000044 rm -f "$tmp"
45
46 if [ "${rest}" != "" ]; then
47 echo "Internal error ($rest)"
48 exit 1
49 fi
bartd1763bc2008-06-08 14:44:41 +000050
bart8a2cd9b2008-06-19 07:49:49 +000051 p=1
bartf16de382008-06-18 08:47:06 +000052 test_output="/dev/null" \
bartd5b0f6c2009-04-25 11:40:09 +000053 print_runtime_ratio "${avg1}" "${stddev1}" "${vsz1}" "${vszdev1}" "$VG" --tool=none "$@" -p${psep}${p} "${test_args}"
bartf16de382008-06-18 08:47:06 +000054
bart8a2cd9b2008-06-19 07:49:49 +000055 p=4
bartf16de382008-06-18 08:47:06 +000056 test_output="/dev/null" \
bartd5b0f6c2009-04-25 11:40:09 +000057 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" "$VG" --tool=none "$@" -p${psep}${p} "${test_args}"
barta9952832008-06-17 14:20:26 +000058
bart8a2cd9b2008-06-19 07:49:49 +000059 p=4
60 test_output="${1}-drd-with-stack-var-4.out" \
bartd5b0f6c2009-04-25 11:40:09 +000061 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" \
bartc243b2c2009-05-10 10:36:18 +000062 "$VG" --tool=drd --first-race-only=yes --check-stack-var=yes \
bartfcac80b2009-06-24 18:33:47 +000063 --drd-stats=yes "$@" -p${psep}${p} "${test_args}"
bartcf801352008-06-15 09:13:28 +000064
bart8a2cd9b2008-06-19 07:49:49 +000065 p=4
66 test_output="${1}-drd-without-stack-var-4.out" \
bartd5b0f6c2009-04-25 11:40:09 +000067 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" \
bartc243b2c2009-05-10 10:36:18 +000068 "$VG" --tool=drd --first-race-only=yes --check-stack-var=no \
bartfcac80b2009-06-24 18:33:47 +000069 --drd-stats=yes "$@" -p${psep}${p} "${test_args}"
bartcf801352008-06-15 09:13:28 +000070
bart8a2cd9b2008-06-19 07:49:49 +000071 p=4
bart211b3722009-07-28 12:54:47 +000072 test_output="${1}-helgrind-4-none.out" \
73 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" "$VG" --tool=helgrind --history-level=none "$@" -p${psep}${p} "${test_args}"
74
75 p=4
bart43d993e2009-08-07 06:47:52 +000076 test_output="${1}-helgrind-4-approx.out" \
77 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" "$VG" --tool=helgrind --history-level=approx "$@" -p${psep}${p} "${test_args}"
bart211b3722009-07-28 12:54:47 +000078
79 p=4
80 test_output="${1}-helgrind-4-full.out" \
81 print_runtime_ratio "${avg4}" "${stddev4}" "${vsz4}" "${vszdev4}" "$VG" --tool=helgrind --history-level=full "$@" -p${psep}${p} "${test_args}"
bart8785c122008-05-29 08:34:27 +000082
83 echo ''
bart8785c122008-05-29 08:34:27 +000084}
85
86
bart9cdd1782008-06-08 11:22:23 +000087########################
88# Script body #
89########################
bart8785c122008-05-29 08:34:27 +000090
bart32811502008-06-03 15:12:59 +000091DRD_SCRIPTS_DIR="$(dirname $0)"
bart7acf3802008-06-06 10:17:26 +000092if [ "${DRD_SCRIPTS_DIR:0:1}" != "/" ]; then
93 DRD_SCRIPTS_DIR="$PWD/$DRD_SCRIPTS_DIR"
bart32811502008-06-03 15:12:59 +000094fi
95
96SPLASH2="${DRD_SCRIPTS_DIR}/../splash2"
bartc4a174f2008-06-03 11:41:19 +000097if [ ! -e "${SPLASH2}" ]; then
98 echo "Error: splash2 directory not found (${SPLASH2})."
bart8785c122008-05-29 08:34:27 +000099 exit 1
100fi
101
102if [ "$VG" = "" ]; then
bart32811502008-06-03 15:12:59 +0000103 VG="${DRD_SCRIPTS_DIR}/../../vg-in-place"
bart8785c122008-05-29 08:34:27 +0000104fi
105
106if [ ! -e "$VG" ]; then
107 echo "Could not find $VG."
108 exit 1
109fi
110
bartee17ad62008-06-18 13:31:05 +0000111######################################################################################################################
barta5a95dd2008-06-18 14:15:11 +0000112# Meaning of the different colums:
113# 1. SPLASH2 test name.
114# 2. Execution time in seconds for native run with argument -p1.
115# 3. Virtual memory size in KB for the native run with argument -p1.
116# 4. Execution time in seconds for native run with argument -p2.
117# 5. Virtual memory size in KB for the native run with argument -p2.
118# 6. Execution time in seconds for native run with argument -p4.
119# 7. Virtual memory size in KB for the native run with argument -p4.
120# 8. Execution time ratio for --tool=none -p1 versus -p1.
121# 9. Virtual memory size ratio for --tool=none -p1 versus -p1.
122# 10. Execution time ratio for --tool=none -p4 versus -p4.
123# 11. Virtual memory size ratio for --tool=none -p4 versus -p4.
bartef1b9722008-07-04 15:34:23 +0000124# 12. Execution time ratio for --tool=drd --check-stack-var=yes -p4 versus -p4.
125# 13. Virtual memory size ratio for --tool=drd --check-stack-var=yes -p4 versus -p4.
126# 14. Execution time ratio for --tool=drd --check-stack-var=no -p4 versus -p4.
127# 15. Virtual memory size ratio for --tool=drd --check-stack-var=no -p4 versus -p4.
bart211b3722009-07-28 12:54:47 +0000128# 16. Execution time ratio for --tool=helgrind --history-level=none -p4 versus -p4.
129# 17. Virtual memory size ratio for --tool=helgrind --history-level=none -p4 versus -p4.
bart43d993e2009-08-07 06:47:52 +0000130# 18. Execution time ratio for --tool=helgrind --history-level=approx -p4 versus -p4.
131# 19. Virtual memory size ratio for --tool=helgrind --history-level=approx -p4 versus -p4.
bart211b3722009-07-28 12:54:47 +0000132# 20. Execution time ratio for --tool=helgrind --history-level=full -p4 versus -p4.
133# 21. Virtual memory size ratio for --tool=helgrind --history-level=full -p4 versus -p4.
134# 22. Execution time ratio for Intel Thread Checker -p4 versus -p4.
135# 23. Execution time ratio for Intel Thread Checker -p4 versus -p4.
barta5a95dd2008-06-18 14:15:11 +0000136#
barta5bf2312008-11-21 19:18:47 +0000137# Notes:
138# - Both Helgrind and DRD use a granularity of one byte for data race detection.
139# - Helgrind does detect data races on stack variables. DRD only detects
140# data races on stack variables with --check-stack-var=yes.
bart2d5d5292008-11-22 16:19:11 +0000141# - The ITC tests have been run on a 4-way 2.5 GHz Pentium 4 workstation, most
142# likely running a 32-bit OS. Not yet clear to me: which OS ? Which
143# granularity does ITC use ? And which m4 macro's have been used by ITC as
144# implementation of the synchronization primitives ?
bart3b7e2e32008-07-10 14:07:22 +0000145#
bart211b3722009-07-28 12:54:47 +0000146# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
147################################################################################################################################################
148# Results: native native native none none DRD DRD HG HG HG ITC ITC
149# -p1 -p2 -p4 -p1 -p4 -p4 -p4+f -p4 -p4 -p4 -p4 -p4+f
150# ..............................................................................................................................................
151# Cholesky 0.11 12016 0.06 22016 0.55 41328 10.3 4.92 1.7 2.14 15 2.61 8 2.61 10 3.96 10 3.96 15 6.14 239 82
152# FFT 0.02 6692 0.02 14888 0.02 31621 17.0 8.01 20.0 2.48 114 3.15 64 3.28 81 4.52 81 4.52 116 5.56 90 41
153# LU, contiguous 0.08 4100 0.05 12304 0.06 28712 11.1 12.44 18.5 2.64 104 3.18 70 3.18 87 4.84 89 4.84 118 5.55 428 128
154# Ocean, contiguous 0.23 16848 0.19 25384 0.23 42528 6.3 3.78 8.3 2.11 87 2.82 62 4.02 71 3.75 71 3.75 195 5.96 90 28
155# Radix 0.21 15136 0.14 23336 0.15 39728 12.6 4.10 22.3 2.19 61 2.87 41 2.94 52 4.03 52 4.03 85 6.13 222 56
156# Raytrace 0.63 207104 0.49 215296 0.49 231680 8.9 1.23 12.9 1.20 385 1.38 86 2.10 158 3.70 160 3.70 222 4.15 172 53
157# Water-n2 0.18 10696 0.09 27072 0.11 59832 12.5 5.46 26.7 1.80 3092 3.03 263 3.06 92 3.28 92 3.28 92 3.55 189 39
158# Water-sp 0.20 4444 0.15 13536 0.10 30269 10.6 11.56 27.0 2.52 405 3.29 69 3.42 95 4.59 95 4.59 97 4.73 183 34
159# ..............................................................................................................................................
160# geometric mean 0.14 13024 0.10 25669 0.14 47655 10.8 5.26 13.5 2.08 161 2.71 59 3.03 66 4.05 66 4.05 95 5.13 180 51
161# ..............................................................................................................................................
162# Hardware: dual-core Intel Core2 Duo E6750, 2.66 GHz, 4 MB L2 cache, 2 GB RAM.
163# Software: openSUSE 11.0 (64-bit edition), runlevel 3, kernel 2.6.30.1, gcc 4.3.1, 32 bit SPLASH-2 executables, valgrind trunk r10648.
164################################################################################################################################################
bart3b7e2e32008-07-10 14:07:22 +0000165
166####
bart37630e52008-07-12 16:14:46 +0000167# Notes:
168# - The ITC performance numbers in the above table originate from table 1 in
169# the following paper:
170# Paul Sack, Brian E. Bliss, Zhiqiang Ma, Paul Petersen, Josep Torrellas,
171# Accurate and efficient filtering for the Intel thread checker race
172# detector, Proceedings of the 1st workshop on Architectural and system
173# support for improving software dependability, San Jose, California,
174# 2006. Pages: 34 - 41.
175# - The input parameters for benchmarks below originate from table 1 in the
176# following paper:
177# The SPLASH-2 programs: characterization and methodological considerations
178# Woo, S.C.; Ohara, M.; Torrie, E.; Singh, J.P.; Gupta, A.
179# 1995. Proceedings of the 22nd Annual International Symposium on Computer
180# Architecture, 22-24 Jun 1995, Page(s): 24 - 36.
181# ftp://www-flash.stanford.edu/pub/splash2/splash2_isca95.ps.Z
bart3b7e2e32008-07-10 14:07:22 +0000182####
bart8785c122008-05-29 08:34:27 +0000183
bart66bb75c2008-06-17 06:19:29 +0000184cache_size=$(get_cache_size)
bart32811502008-06-03 15:12:59 +0000185log2_cache_size=$(log2 ${cache_size})
186
187# Cholesky
bart32811502008-06-03 15:12:59 +0000188(
bart868d73a2008-06-04 13:02:22 +0000189 cd ${SPLASH2}/codes/kernels/cholesky/inputs
190 for f in *Z
191 do
192 gzip -cd <$f >${f%.Z}
193 done
bart3b7e2e32008-07-10 14:07:22 +0000194 test_args=tk15.O run_test ../CHOLESKY -C$((cache_size))
bart32811502008-06-03 15:12:59 +0000195)
bart32811502008-06-03 15:12:59 +0000196
197# FFT
bart3b7e2e32008-07-10 14:07:22 +0000198run_test ${SPLASH2}/codes/kernels/fft/FFT -t -l$((log2_cache_size/2)) -m16
bart32811502008-06-03 15:12:59 +0000199
200# LU, contiguous blocks.
bart3b7e2e32008-07-10 14:07:22 +0000201run_test ${SPLASH2}/codes/kernels/lu/contiguous_blocks/LU -n512
bart8785c122008-05-29 08:34:27 +0000202
bart32811502008-06-03 15:12:59 +0000203# LU, non-contiguous blocks.
bart3b7e2e32008-07-10 14:07:22 +0000204#run_test ${SPLASH2}/codes/kernels/lu/non_contiguous_blocks/LU -n512
bart8785c122008-05-29 08:34:27 +0000205
bart868d73a2008-06-04 13:02:22 +0000206# Ocean
bart3b7e2e32008-07-10 14:07:22 +0000207run_test ${SPLASH2}/codes/apps/ocean/contiguous_partitions/OCEAN -n258
208#run_test ${SPLASH2}/codes/apps/ocean/non_contiguous_partitions/OCEAN -n258
bart868d73a2008-06-04 13:02:22 +0000209
barta5bf2312008-11-21 19:18:47 +0000210# Radiosity. Runs fine on a 32-bit OS, but deadlocks on a 64-bit OS. Not clear to me why.
211if [ $(uname -p) = "i686" ]; then
bart2d5d5292008-11-22 16:19:11 +0000212 psep=' ' run_test ${SPLASH2}/codes/apps/radiosity/RADIOSITY -batch -room -ae 5000.0 -en 0.050 -bf 0.10
barta5bf2312008-11-21 19:18:47 +0000213fi
bartc4a174f2008-06-03 11:41:19 +0000214
bart868d73a2008-06-04 13:02:22 +0000215# Radix
bart3b7e2e32008-07-10 14:07:22 +0000216run_test ${SPLASH2}/codes/kernels/radix/RADIX -n$((2**20)) -r1024
bart868d73a2008-06-04 13:02:22 +0000217
218# Raytrace
219(
220 cd ${SPLASH2}/codes/apps/raytrace/inputs
221 rm -f *.env *.geo *.rl
222 for f in *Z
223 do
224 gzip -cd <$f >${f%.Z}
225 done
bart3b7e2e32008-07-10 14:07:22 +0000226 cd ..
bart1c6623c2008-07-12 17:59:09 +0000227 test_args=inputs/car.env psep='' run_test ./RAYTRACE -m64
bart868d73a2008-06-04 13:02:22 +0000228)
bart334db5e2008-06-05 10:14:53 +0000229
bart868d73a2008-06-04 13:02:22 +0000230# Water-n2
bart334db5e2008-06-05 10:14:53 +0000231(
232 cd ${SPLASH2}/codes/apps/water-nsquared
bart8a2cd9b2008-06-19 07:49:49 +0000233 test_input=${DRD_SCRIPTS_DIR}/run-splash2-water-input psep=' ' run_test ./WATER-NSQUARED
bart334db5e2008-06-05 10:14:53 +0000234)
bart868d73a2008-06-04 13:02:22 +0000235
236# Water-sp
bart334db5e2008-06-05 10:14:53 +0000237(
238 cd ${SPLASH2}/codes/apps/water-spatial
bart8a2cd9b2008-06-19 07:49:49 +0000239 test_input=${DRD_SCRIPTS_DIR}/run-splash2-water-input psep=' ' run_test ./WATER-SPATIAL
bart334db5e2008-06-05 10:14:53 +0000240)
bart868d73a2008-06-04 13:02:22 +0000241
242
bartc4a174f2008-06-03 11:41:19 +0000243
244# Local variables:
245# compile-command: "./run-splash2"
246# End: