makefile.allprof
来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· ALLPROF 代码 · 共 25 行
ALLPROF
25 行
# Add $(PROF_OBJ) to the dependency line# Add $(PROF_FLG) to the compile line# Add $(PROF_LIB) to the link line, after the main code but before -lmpi# Add $(PROF_CLN) to the clean lineWGEN_DIR = $(MPIR_HOME)/profiling/wrappergenPROF_DIR = $(MPIR_HOME)/profiling/libPROF_DEF = $(PROF_DIR)/time_wrappers.w $(PROF_DIR)/visual_mess.w \ $(PROF_DIR)/message_prof.w $(PROF_DIR)/log_wrappers.wPROF_ARG = -w $(PROF_DIR)/time_wrappers.w \ -w $(PROF_DIR)/visual_mess.w -w $(PROF_DIR)/message_prof.w \ -w $(PROF_DIR)/log_wrappers.w -f $(PROF_DIR)/pt2pt_fnPROF_SRC = allprof.cPROF_CLN = $(PROF_SRC) *.log *.profPROF_OBJ = allprof.oPROF_FLG = -I$(MPIR_HOME)/profiling/lib -I$(MPE_DIR) $(MPE_GRAPH)PROF_LIB = $(PROF_OBJ) -lmpe -lpmpi -lX11$(WGEN_DIR)/wrappergen: (cd $(WGEN_DIR); make wrappergen)$(PROF_SRC): $(PROF_DEF) $(WGEN_DIR)/wrappergen $(WGEN_DIR)/wrappergen $(PROF_ARG) -o $(PROF_SRC)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?