benchmarks initial commit
authorYunsup Lee <yunsup@cs.berkeley.edu>
Tue, 30 Apr 2013 01:44:21 +0000 (18:44 -0700)
committerYunsup Lee <yunsup@cs.berkeley.edu>
Tue, 30 Apr 2013 01:44:21 +0000 (18:44 -0700)
commit23507d668862dff15a898f20e109a46c6e95780d
treea3b620e117c1ded337e9508042e353c62a1a97a8
parentf8ea498f79ab4d6495f2966d1e5c3dd42f567752
benchmarks initial commit
71 files changed:
benchmarks/Makefile [new file with mode: 0644]
benchmarks/common/crt-mt.S [new file with mode: 0644]
benchmarks/common/crt.S [new file with mode: 0644]
benchmarks/common/pcr.h [new file with mode: 0644]
benchmarks/common/syscalls.S [new file with mode: 0644]
benchmarks/common/syscalls.c [new file with mode: 0644]
benchmarks/common/test-mt.ld [new file with mode: 0644]
benchmarks/common/test.ld [new file with mode: 0644]
benchmarks/common/util.h [new file with mode: 0644]
benchmarks/dgemm/bmark.mk [new file with mode: 0644]
benchmarks/dgemm/dataset1.h [new file with mode: 0644]
benchmarks/dgemm/dgemm_gendata.scala [new file with mode: 0644]
benchmarks/dgemm/dgemm_main.c [new file with mode: 0644]
benchmarks/dhrystone/bmark.mk [new file with mode: 0644]
benchmarks/dhrystone/dhrystone.c [new file with mode: 0644]
benchmarks/dhrystone/dhrystone.h [new file with mode: 0644]
benchmarks/dhrystone/dhrystone_main.c [new file with mode: 0644]
benchmarks/median/bmark.mk [new file with mode: 0644]
benchmarks/median/dataset1.h [new file with mode: 0644]
benchmarks/median/median.c [new file with mode: 0644]
benchmarks/median/median.h [new file with mode: 0644]
benchmarks/median/median_gendata.pl [new file with mode: 0755]
benchmarks/median/median_main.c [new file with mode: 0644]
benchmarks/mt-matmul/bmark.mk [new file with mode: 0644]
benchmarks/mt-matmul/dataset.h [new file with mode: 0644]
benchmarks/mt-matmul/matmul_gendata.pl [new file with mode: 0755]
benchmarks/mt-matmul/mt-matmul.c [new file with mode: 0644]
benchmarks/mt-vvadd/bmark.mk [new file with mode: 0644]
benchmarks/mt-vvadd/dataset.h [new file with mode: 0644]
benchmarks/mt-vvadd/mt-vvadd.c [new file with mode: 0644]
benchmarks/mt-vvadd/vvadd_gendata.pl [new file with mode: 0755]
benchmarks/multiply/bmark.mk [new file with mode: 0644]
benchmarks/multiply/dataset1.h [new file with mode: 0644]
benchmarks/multiply/multiply.c [new file with mode: 0644]
benchmarks/multiply/multiply.h [new file with mode: 0644]
benchmarks/multiply/multiply_gendata.pl [new file with mode: 0755]
benchmarks/multiply/multiply_main.c [new file with mode: 0644]
benchmarks/qsort/bmark.mk [new file with mode: 0644]
benchmarks/qsort/dataset1.h [new file with mode: 0644]
benchmarks/qsort/qsort_gendata.pl [new file with mode: 0755]
benchmarks/qsort/qsort_main.c [new file with mode: 0644]
benchmarks/readme.txt [new file with mode: 0644]
benchmarks/spmv/bmark.mk [new file with mode: 0644]
benchmarks/spmv/dataset1.h [new file with mode: 0644]
benchmarks/spmv/spmv_gendata.scala [new file with mode: 0644]
benchmarks/spmv/spmv_main.c [new file with mode: 0644]
benchmarks/towers/bmark.mk [new file with mode: 0644]
benchmarks/towers/towers_main.c [new file with mode: 0644]
benchmarks/vec-cmplxmult/bmark.mk [new file with mode: 0644]
benchmarks/vec-cmplxmult/cmplxmult_gendata.pl [new file with mode: 0755]
benchmarks/vec-cmplxmult/dataset.h [new file with mode: 0644]
benchmarks/vec-cmplxmult/dataset_test.h [new file with mode: 0644]
benchmarks/vec-cmplxmult/vec_cmplxmult_asm.S [new file with mode: 0644]
benchmarks/vec-cmplxmult/vec_cmplxmult_main.c [new file with mode: 0644]
benchmarks/vec-matmul/bmark.mk [new file with mode: 0644]
benchmarks/vec-matmul/dataset.h [new file with mode: 0644]
benchmarks/vec-matmul/dataset_test.h [new file with mode: 0644]
benchmarks/vec-matmul/matmul_gendata.pl [new file with mode: 0755]
benchmarks/vec-matmul/vec_matmul_asm.S [new file with mode: 0644]
benchmarks/vec-matmul/vec_matmul_main.c [new file with mode: 0644]
benchmarks/vec-vvadd/bmark.mk [new file with mode: 0644]
benchmarks/vec-vvadd/dataset.h [new file with mode: 0644]
benchmarks/vec-vvadd/dataset_test.h [new file with mode: 0644]
benchmarks/vec-vvadd/vec_vvadd_asm.S [new file with mode: 0644]
benchmarks/vec-vvadd/vec_vvadd_main.c [new file with mode: 0644]
benchmarks/vec-vvadd/vvadd_gendata.pl [new file with mode: 0755]
benchmarks/vvadd/bmark.mk [new file with mode: 0644]
benchmarks/vvadd/dataset1-large.h [new file with mode: 0644]
benchmarks/vvadd/dataset1.h [new file with mode: 0644]
benchmarks/vvadd/vvadd_gendata.pl [new file with mode: 0755]
benchmarks/vvadd/vvadd_main.c [new file with mode: 0644]