makefile.timing
来自「MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程」· TIMING 代码 · 共 22 行
TIMING
22 行
# 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.wPROF_ARG = -w $(PROF_DIR)/time_wrappers.wPROF_SRC = time_wrappers.cPROF_CLN = $(PROF_SRC) *.profPROF_OBJ = time_wrappers.oPROF_FLG = -I$(MPIR_HOME)/profiling/lib -I$(MPE_DIR)PROF_LIB = $(PROF_OBJ) -lmpe -lpmpi $(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 + -
显示快捷键?