aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-07-01 19:56:14 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-07-01 19:56:14 -0700
commit91043556252cb87e837807bfc39ee9769410ba16 (patch)
tree7249051b85fa9b27482705783e0893d1f82f57d1
parent1c1d291964d025845228e5e8b985aec066bf79d2 (diff)
normalize memops benchmark
-rw-r--r--tests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 60b97b63..85a27a32 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -3069,7 +3069,7 @@ else:
#include<stdlib.h>
int main() {
int N = 1024*1024;
- int M = 600;
+ int M = 190;
int final = 0;
char *buf = (char*)malloc(N);
for (int t = 0; t < M; t++) {
@@ -3083,7 +3083,7 @@ else:
return 1;
}
'''
- self.do_benchmark(src, [], 'final: 800.')
+ self.do_benchmark(src, [], 'final: 720.')
def test_fannkuch(self):
src = open(path_from_root('tests', 'fannkuch.cpp'), 'r').read()