diff options
Diffstat (limited to 'benchmarks/Makefile')
-rw-r--r-- | benchmarks/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/benchmarks/Makefile b/benchmarks/Makefile index 9738f61..2b71b50 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -27,10 +27,6 @@ bmarks = \ spmv \ mt-vvadd \ mt-matmul \ - #vec-fft \ - #vec-vvadd \ - #vec-cmplxmult \ - #vec-matmul \ bmarks_host = \ median \ @@ -52,7 +48,7 @@ HOST_COMP = gcc $(HOST_OPTS) RISCV_PREFIX=riscv64-unknown-elf- RISCV_GCC = $(RISCV_PREFIX)gcc -RISCV_GCC_OPTS = -static -Wa,-march=RVIMAFDXhwacha -std=gnu99 -O2 -ffast-math -fno-common -fno-builtin-printf +RISCV_GCC_OPTS = -static -std=gnu99 -O2 -ffast-math -fno-common -fno-builtin-printf RISCV_LINK = $(RISCV_GCC) -T $(bmarkdir)/common/test.ld $(incs) RISCV_LINK_MT = $(RISCV_GCC) -T $(bmarkdir)/common/test-mt.ld RISCV_LINK_OPTS = -nostdlib -nostartfiles -ffast-math -lc -lgcc |