[llvm-commits] [test-suite] r51537 - /test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp
Chris Lattner
sabre at nondot.org
Fri May 23 21:35:27 PDT 2008
Author: lattner
Date: Fri May 23 23:35:27 2008
New Revision: 51537
URL: http://llvm.org/viewvc/llvm-project?rev=51537&view=rev
Log:
reduce the input size of this benchmark to fit in the 200M heap limit
impossed by RunSafely.
Modified:
test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp
Modified: test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp?rev=51537&r1=51536&r2=51537&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp (original)
+++ test-suite/trunk/SingleSource/Benchmarks/CoyoteBench/fftbench.cpp Fri May 23 23:35:27 2008
@@ -46,7 +46,7 @@
#ifdef SMALL_PROBLEM_SIZE
static const int TEST_SIZE = 50000;
#else
-static const int TEST_SIZE = 2097152;
+static const int TEST_SIZE = 2097152/2;
#endif
#endif
More information about the llvm-commits
mailing list