mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-21 23:54:25 +00:00
HPC CUDA Lab x86 Makefile
This commit is contained in:
parent
f859ef9daf
commit
087c299426
1 changed files with 58 additions and 0 deletions
58
cuda/lab3/Makefile.x86
Executable file
58
cuda/lab3/Makefile.x86
Executable file
|
@ -0,0 +1,58 @@
|
|||
ifndef CUDA_HOME
|
||||
CUDA_HOME:=/usr/local/cuda
|
||||
endif
|
||||
|
||||
ifndef EXERCISE
|
||||
EXERCISE=exercise1.cu
|
||||
endif
|
||||
|
||||
BUILD_DIR ?= ./build
|
||||
|
||||
NVCC=$(CUDA_HOME)/bin/nvcc
|
||||
CXX=g++
|
||||
|
||||
OPT:=-O2 -g
|
||||
NVOPT:=-Xcompiler -fopenmp -lineinfo --ptxas-options=-v --use_fast_math `pkg-config --cflags --libs opencv4`
|
||||
|
||||
CXXFLAGS:=$(OPT) -I. $(EXT_CXXFLAGS)
|
||||
LDFLAGS:=-lm -lcudart $(EXT_LDFLAGS)
|
||||
|
||||
NVCFLAGS:=$(CXXFLAGS) $(NVOPT)
|
||||
NVLDFLAGS:=$(LDFLAGS) -lgomp
|
||||
|
||||
SRCS:= utils.c
|
||||
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o) $(EXERCISE:%=$(BUILD_DIR)/%.o)
|
||||
EXE=$(EXERCISE:.cu=.exe)
|
||||
|
||||
$(EXE): $(OBJS)
|
||||
$(MKDIR_P) $(dir $@)
|
||||
$(NVCC) $(NVCFLAGS) $(OBJS) -o $@ $(NVLDFLAGS)
|
||||
|
||||
$(BUILD_DIR)/%.cu.o: %.cu
|
||||
$(MKDIR_P) $(dir $@)
|
||||
$(NVCC) $(NVCFLAGS) -c $< -o $@
|
||||
|
||||
$(BUILD_DIR)/%.cpp.o: %.cpp
|
||||
$(MKDIR_P) $(dir $@)
|
||||
$(CXX) $(CXXFLAGS) -c $< -o $@
|
||||
|
||||
$(BUILD_DIR)/%.c.o: %.c
|
||||
$(MKDIR_P) $(dir $@)
|
||||
$(CXX) $(CXXFLAGS) -c $< -o $@
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
.PHONY: run profile clean
|
||||
run: $(EXE)
|
||||
./$(EXE)
|
||||
|
||||
profile: $(EXE)
|
||||
sudo LD_LIBRARY_PATH=$(CUDA_HOME)/lib:/usr/ext/lib:${LD_LIBRARY_PATH} LIBRARY_PATH=/usr/ext/lib:${LIBRARY_PATH} nvprof --unified-memory-profiling off ./$(EXE)
|
||||
|
||||
metrics: $(EXE)
|
||||
sudo LD_LIBRARY_PATH=$(CUDA_HOME)/lib:/usr/ext/lib:${LD_LIBRARY_PATH} LIBRARY_PATH=/usr/ext/lib:${LIBRARY_PATH} nvprof --unified-memory-profiling off --print-gpu-trace --metrics "eligible_warps_per_cycle,achieved_occupancy,sm_efficiency,ipc" ./$(EXE)
|
||||
|
||||
clean:
|
||||
-rm -fr $(BUILD_DIR) *.exe *.out *~
|
||||
|
||||
MKDIR_P ?= mkdir -p
|
Loading…
Reference in a new issue