AUTH's THMMY "Parallel and distributed systems" course assignments.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

286 lignes
9.1 KiB

  1. #
  2. # PDS homework_1 Makefile
  3. #
  4. # Copyright (C) 2024 Christos Choutouridis <christos@choutouridis.net>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Lesser General Public License as
  8. # published by the Free Software Foundation, either version 3
  9. # of the License, or (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. # ============== Project settings ==============
  20. # Project's name
  21. PROJECT := PDS_homework_1
  22. # Excecutable's name
  23. TARGET := knnsearch
  24. # Source directories list(space seperated). Makefile-relative path, UNDER current directory.
  25. SRC_DIR_LIST := src
  26. # Include directories list(space seperated). Makefile-relative path.
  27. INC_DIR_LIST := inc \
  28. src \
  29. Libs/matrix/include/ \
  30. /usr/include/hdf5/serial/
  31. # Libs/MATLAB/R2019b/include/ \
  32. # Exclude files list(space seperated). Filenames only.
  33. # EXC_FILE_LIST := bad.cpp old.cpp
  34. # Build directories
  35. BUILD_DIR := bin
  36. OBJ_DIR := $(BUILD_DIR)/obj
  37. DEP_DIR := $(BUILD_DIR)/.dep
  38. # ========== Compiler settings ==========
  39. # Compiler flags for debug and release
  40. DEB_CFLAGS := -DDEBUG -g3 -Wall -Wextra -std=c11
  41. REL_CFLAGS := -Wall -Wextra -O3 -std=c11
  42. DEB_CXXFLAGS := -DDEBUG -g3 -Wall -Wextra -std=c++17
  43. REL_CXXFLAGS := -Wall -Wextra -O3 -std=c++17
  44. # Pre-defines
  45. # PRE_DEFS := MYCAB=1729 SUPER_MODE
  46. PRE_DEFS :=
  47. # ============== Linker settings ==============
  48. # Linker flags (example: -pthread -lm)
  49. LDFLAGS := -pthread -lopenblas \
  50. -L/usr/lib/x86_64-linux-gnu/hdf5/serial -lhdf5
  51. # -LLibs/MATLAB/R2019b/bin/ -lmat -lmx -Wl,-rpath,Libs/MATLAB/R2019b/bin/ \
  52. # -Wl,-rpath,Libs/unwind/bin/
  53. # Map output file
  54. MAP_FILE := output.map
  55. MAP_FLAG := -Xlinker -Map=$(BUILD_DIR)/$(MAP_FILE)
  56. # ============== Docker settings ==============
  57. # We need:
  58. # - Bind the entire project directory(the dir that icludes all the code) as volume.
  59. # - In docker instance, change to working directory(where the makefile is).
  60. DOCKER_VOL_DIR := ${PWD}
  61. DOCKER_WRK_DIR :=
  62. DOCKER_RUN := docker run --rm
  63. DOCKER_FLAGS := -v $(DOCKER_VOL_DIR):/usr/src/$(PROJECT) -w /usr/src/$(PROJECT)/$(DOCKER_WRK_DIR)
  64. # docker invoke mechanism (edit with care)
  65. # note:
  66. # Here, `DOCKER` variable is empty. Rules can assign `DOCKER := DOCKER_CMD` when docker
  67. # functionality is needed.
  68. DOCKER_CMD = $(DOCKER_RUN) $(DOCKER_FLAGS) $(IMAGE)
  69. DOCKER :=
  70. # ============== Tool selection ==============
  71. # compiler and compiler flags.
  72. CSIZE := size
  73. CFLAGS := $(DEB_CFLAGS)
  74. CXXFLAGS := $(DEB_CXXFLAGS)
  75. CXX := g++
  76. CC := gcc
  77. #
  78. # =========== Main body and Patterns ===========
  79. #
  80. #ifeq ($(OS), Windows_NT)
  81. # TARGET := $(TARGET).exe
  82. #endif
  83. INC := $(foreach dir,$(INC_DIR_LIST),-I$(dir))
  84. DEF := $(foreach def,$(PRE_DEFS),-D$(def))
  85. EXC := $(foreach fil,$(EXC_FILE_LIST), \
  86. $(foreach dir,$(SRC_DIR_LIST),$(wildcard $(dir)/$(fil))) \
  87. )
  88. # source files. object and dependencies list
  89. # recursive search into current and source directories
  90. SRC := $(wildcard *.cpp)
  91. SRC += $(foreach dir,$(SRC_DIR_LIST),$(wildcard $(dir)/*.cpp))
  92. SRC += $(foreach dir,$(SRC_DIR_LIST),$(wildcard $(dir)/**/*.cpp))
  93. SRC := $(filter-out $(EXC),$(SRC))
  94. #SRC := $(abspath $(SRC))
  95. OBJ := $(foreach file,$(SRC:%.cpp=%.o),$(OBJ_DIR)/$(file))
  96. DEP := $(foreach file,$(SRC:%.cpp=%.d),$(DEP_DIR)/$(file))
  97. # Make Dependencies pattern.
  98. # This little trick enables recompilation only when dependencies change
  99. # and it does so for changes both in source AND header files ;)
  100. #
  101. # It is based on Tom Tromey's method.
  102. #
  103. # Invoke cpp to create makefile rules with dependencies for each source file
  104. $(DEP_DIR)/%.d: %.c
  105. @mkdir -p $(@D)
  106. @$(DOCKER) $(CC) -E $(CFLAGS) $(INC) $(DEF) -MM -MT $(OBJ_DIR)/$(<:.c=.o) -MF $@ $<
  107. # c file objects depent on .c AND dependency files, which have an empty recipe
  108. $(OBJ_DIR)/%.o: %.c $(DEP_DIR)/%.d
  109. @mkdir -p $(@D)
  110. $(DOCKER) $(CC) -c $(CFLAGS) $(INC) $(DEF) -o $@ $<
  111. $(DEP_DIR)/%.d: %.cpp
  112. @mkdir -p $(@D)
  113. @$(DOCKER) $(CXX) -E $(CXXFLAGS) $(INC) $(DEF) -MM -MT $(OBJ_DIR)/$(<:.cpp=.o) -MF $@ $<
  114. # cpp file objects depent on .cpp AND dependency files, which have an empty recipe
  115. $(OBJ_DIR)/%.o: %.cpp $(DEP_DIR)/%.d
  116. @mkdir -p $(@D)
  117. $(DOCKER) $(CXX) -c $(CXXFLAGS) $(INC) $(DEF) -o $@ $<
  118. # empty recipe for dependency files. This prevents make errors
  119. $(DEP):
  120. # now include all dependencies
  121. # After all they are makefile dependency rules ;)
  122. include $(wildcard $(DEP))
  123. # main target rule
  124. $(BUILD_DIR)/$(TARGET): $(OBJ)
  125. @mkdir -p $(@D)
  126. @echo Linking to target: $(TARGET)
  127. @echo $(DOCKER) $(CXX) '$$(OBJ)' $(LDFLAGS) $(MAP_FLAG) -o $(@D)/$(TARGET)
  128. @$(DOCKER) $(CXX) $(OBJ) $(LDFLAGS) $(MAP_FLAG) -o $(@D)/$(TARGET)
  129. @echo
  130. @echo Print size information
  131. @$(CSIZE) $(@D)/$(TARGET)
  132. @echo Done
  133. .PHONY: clean
  134. clean:
  135. @echo Cleaning build directories
  136. @rm -rf $(OBJ_DIR)
  137. @rm -rf $(DEP_DIR)
  138. @rm -rf $(BUILD_DIR)
  139. #
  140. # ================ Local build rules =================
  141. # example:
  142. # make debug
  143. debug: CFLAGS := $(DEB_CFLAGS)
  144. debug: $(BUILD_DIR)/$(TARGET)
  145. release: CFLAGS := $(REL_CFLAGS)
  146. release: $(BUILD_DIR)/$(TARGET)
  147. all: release
  148. hpc-results/post:
  149. $(CXX) $(CFLAGS) -o $@ hpc-results/main.cpp
  150. hpc-clean:
  151. rm hpc-results/post
  152. #
  153. # ================ Local via docker build rules =================
  154. #
  155. # examples:
  156. # make IMAGE=hpcimage v0
  157. # make IMAGE=hpcimage v1_cilk
  158. #
  159. local_v0: CFLAGS := $(DEB_CFLAGS) -DCODE_VERSION=0
  160. local_v0: CXXFLAGS := $(DEB_CXXFLAGS) -DCODE_VERSION=0
  161. local_v0: TARGET := local_v0
  162. local_v0: $(BUILD_DIR)/$(TARGET)
  163. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  164. local_v0_opt: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=0
  165. local_v0_opt: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=0
  166. local_v0_opt: TARGET := local_v0_opt
  167. local_v0_opt: $(BUILD_DIR)/$(TARGET)
  168. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  169. local_v1: CFLAGS := $(DEB_CFLAGS) -DCODE_VERSION=4
  170. local_v1: CXXFLAGS := $(DEB_CXXFLAGS) -DCODE_VERSION=4
  171. local_v1: TARGET := local_v1
  172. local_v1: $(BUILD_DIR)/$(TARGET)
  173. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  174. v0: DOCKER := $(DOCKER_CMD)
  175. v0: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=0
  176. v0: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=0
  177. v0: TARGET := knnsearch_v0
  178. v0: $(BUILD_DIR)/$(TARGET)
  179. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  180. v1_cilk: DOCKER := $(DOCKER_CMD)
  181. v1_cilk: CXX := /usr/local/OpenCilk-9.0.1-Linux/bin/clang++
  182. v1_cilk: CFLAGS := $(REL_CFLAGS) -fcilkplus -DCODE_VERSION=1 -DCILK
  183. v1_cilk: CXXFLAGS := $(REL_CXXFLAGS) -fcilkplus -DCODE_VERSION=1 -DCILK
  184. v1_cilk: LDFLAGS += -fcilkplus
  185. v1_cilk: TARGET := knnsearch_cilkv1
  186. v1_cilk: $(BUILD_DIR)/$(TARGET)
  187. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  188. v1_omp: DOCKER := $(DOCKER_CMD)
  189. v1_omp: CFLAGS := $(REL_CFLAGS) -fopenmp -DCODE_VERSION=1 -DOMP
  190. v1_omp: CXXFLAGS := $(REL_CXXFLAGS) -fopenmp -DCODE_VERSION=1 -DOMP
  191. v1_omp: LDFLAGS += -fopenmp
  192. v1_omp: TARGET := knnsearch_ompv1
  193. v1_omp: $(BUILD_DIR)/$(TARGET)
  194. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  195. v1: DOCKER := $(DOCKER_CMD)
  196. v1: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=1
  197. v1: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=1
  198. v1: TARGET := knnsearch_v1
  199. v1: $(BUILD_DIR)/$(TARGET)
  200. cp $(BUILD_DIR)/$(TARGET) out/$(TARGET)
  201. #
  202. # ========= Inside CSAL Image build rules ===========
  203. #
  204. # 1) first jump into image (make sure you are in the directory where Makefile is):
  205. # > docker run -it -v ${PWD}:/usr/src/exercise_1 -w /usr/src/exercise_1/ hpcimage
  206. # 2) Clean binaries first **important**
  207. # > make clean
  208. # 3) for v4 cilk for example:
  209. # > make csal_v4_cilk
  210. # 4) run executables from `bin/`. Examples:
  211. # > ./bin/tcount_ompv3 -i mtx/NACA0015.mtx --timing -r 3 -o /dev/null
  212. # > ./bin/tcount_pthv4 -i mtx/com_Youtube.mtx --timing --dynamic --print_count
  213. csal_v0: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=0
  214. csal_v0: TARGET := knnsearch_v0
  215. csal_v0: $(BUILD_DIR)/$(TARGET)
  216. csal_v1_cilk: CXX := /usr/local/OpenCilk-9.0.1-Linux/bin/clang++
  217. csal_v1_cilk: CFLAGS := $(REL_CFLAGS) -fcilkplus -DCODE_VERSION=1 -DCILK
  218. csal_v1_cilk: CXXFLAGS := $(REL_CXXFLAGS) -fcilkplus -DCODE_VERSION=1 -DCILK
  219. csal_v1_cilk: LDFLAGS += -fcilkplus
  220. csal_v1_cilk: TARGET := knnsearch_cilkv1
  221. csal_v1_cilk: $(BUILD_DIR)/$(TARGET)
  222. csal_v1_omp: CFLAGS := $(REL_CFLAGS) -fopenmp -DCODE_VERSION=1 -DOMP
  223. csal_v1_omp: CXXFLAGS := $(REL_CXXFLAGS) -fopenmp -DCODE_VERSION=1 -DOMP
  224. csal_v1_omp: LDFLAGS += -fopenmp
  225. csal_v1_omp: TARGET := knnsearch_ompv1
  226. csal_v1_omp: $(BUILD_DIR)/$(TARGET)
  227. csal_v1: CFLAGS := $(REL_CFLAGS) -DCODE_VERSION=1
  228. csal_v1: CXXFLAGS := $(REL_CXXFLAGS) -DCODE_VERSION=1
  229. csal_v1: TARGET := knnsearch_v1
  230. csal_v1: $(BUILD_DIR)/$(TARGET)
  231. #
  232. # ======== Run from container =========
  233. #
  234. # examples:
  235. #
  236. # make IMAGE=hpcimage EXEC=knnsearch_v1 run
  237. # make IMAGE=hpcimage EXEC=knnsearch_v1 run
  238. #
  239. run: DOCKER := $(DOCKER_CMD)
  240. run:
  241. $(DOCKER) ./out/$(EXEC)