search for: n65536

Displaying 2 results from an estimated 2 matches for "n65536".

Did you mean: 65536
2008 Jun 18
3
[LLVMdev] JIT bug?
Hi, I see sth that to me looks like a JIT bug. The program is the KMeans benchmark from the STAMP benchmark suite (http://stamp.stanford.edu). Overwrite ./common/Defines.common.mk with the attached files to make CC/LD customizable. in ./kmeans, for ./kmeans -m40 -n40 -t0.00001 -i inputs/random-n65536-d32-c16.txt -p 1 : make -f Makefile.seq clean CC='llvm-gcc' LD='llvm-gcc -lm' make -f Makefile.seq -->works, but is slower than gcc (35s vs 16s on my Intel 32b system) CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm' make -f Makefile.seq --> does not work (lot'...
2008 Jun 19
0
[LLVMdev] JIT bug?
...IT bug. The program is the KMeans > benchmark > from the STAMP benchmark suite (http://stamp.stanford.edu). > Overwrite ./common/Defines.common.mk with the attached files to make > CC/LD > customizable. > > in ./kmeans, for > ./kmeans -m40 -n40 -t0.00001 -i inputs/random-n65536-d32-c16.txt -p > 1 : > > make -f Makefile.seq clean > > CC='llvm-gcc' LD='llvm-gcc -lm' make -f Makefile.seq > -->works, but is slower than gcc (35s vs 16s on my Intel 32b system) > > CC='llvm-gcc -emit-llvm' LD='llvm-ld -lm' make -f Make...