1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-23 16:44:22 +00:00
hpc-2022-g3/atax/Makefile

33 lines
773 B
Makefile
Raw Normal View History

2022-11-28 15:22:38 +00:00
# Remove all make implicit rules because this is already complex enough as it is
MAKEFLAGS+= -r
2022-11-16 16:04:50 +00:00
# -DPOLYBENCH_TIME makes Polybench output the execution time of the program
CXXFLAGS+= -DPOLYBENCH_TIME
2022-11-16 00:43:59 +00:00
# -O3 applies all compiler optimization, improving from 800ms to 300ms
2022-11-28 15:11:00 +00:00
CXXFLAGS+= -O3
# Extend CFLAGS with command line parameters
2022-11-28 13:37:37 +00:00
CXXFLAGS+= ${EXTRA_CXXFLAGS}
# Select the location of the local CUDA install
2022-11-29 13:22:51 +00:00
CUDA_HOME:=/usr/local/cuda-10.0
2022-11-28 13:37:37 +00:00
# Specify the directory of the nvc compiler
2022-11-28 14:08:26 +00:00
NVCC:=$(CUDA_HOME)/bin/nvcc
2022-11-28 13:37:37 +00:00
# Specify the flags for the nvc compiler
NVCFLAGS:=$(CXXFLAGS) $(NVOPT)
2022-11-16 16:09:27 +00:00
2022-11-28 15:22:38 +00:00
%.elf: %.cu.o polybench.cu.o
$(NVCC) $(NVCFLAGS) $^ -o $@ $(LDFLAGS)
2022-11-28 14:08:26 +00:00
2022-11-28 15:22:38 +00:00
%.cu.o: %.cu
2022-11-28 13:41:35 +00:00
$(NVCC) $(NVCFLAGS) -c $< -o $@
2022-11-28 14:08:26 +00:00
2022-11-28 15:26:14 +00:00
.PHONY: bench clean
2022-11-16 16:09:27 +00:00
bench:
./.bench.sh
2022-11-28 15:26:14 +00:00
clean:
rm *.elf *.cu.o