⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mfile.in

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 IN
字号:
ALL: default# This is a special Makefile.in source for use by the test suite (see the# configure in examples/test)##### User configurable options #####MPIR_HOME    = @MPIR_HOME@CC           = @MPICC@CLINKER      = @MPICC@CCC          = @MPICPLUSPLUS@CCLINKER     = $(CCC)F77          = @MPIF77@F90BASE	     = @MPIF90BASE@F90          = @MPIF90@FLINKER      = @MPIF77@OPTFLAGS     = @OPTFLAGS@MPIFDEP      = @MPIFDEP@### End User configurable options ###SHELL = /bin/shprefix     = @prefix@top_srcdir = @top_srcdir@srcdir     = @srcdir@@VPATH@PROFLIB =CFLAGS  = @CFLAGS@ @DEFS@ $(OPTFLAGS) CCFLAGS = $(CFLAGS)FFLAGS = $(OPTFLAGS) @FFLAGS@# Use LIBS to add any special libraries for C programsLIBS = @LIB_PATH@ @LIB_LIST@# Use FLIBS to add any special libraries for Fortran programsFLIBS = @FLIB_PATH@ @LIB_LIST@ @F77EXTRALIBS@EXECS = $(CTESTS) $(FTESTS)OTHEREXECS = CTESTS = simple perf async coll_test coll_perf misc file_info excl \       large_array \     atomicity noncontig i_noncontig noncontig_coll split_coll shared_fp \     large_file psimple error status noncontig_coll2FTESTS = fcoll_test fperf fmisc pfcoll_test default: $(EXECS)## Note that runtests builds the executables as requiredtesting: 	  -./runtests $(TESTARGS)all: testingfortran_tests: $(FTESTS)## The Fortran tests must be built with the Fortran linkerfperf: fperf.f	$(F77) $(USER_FFLAGS) -o  $@ $< $(FLIBS)# Some of the Fortran tests must be derived, so their code will be in the# LOCAL directoryfcoll_test: fcoll_test.f	$(F77) $(USER_FFLAGS) -o  fcoll_test fcoll_test.f $(FLIBS)fmisc: fmisc.f	$(F77) $(USER_FFLAGS) -o  fmisc fmisc.f $(FLIBS)pfcoll_test: pfcoll_test.f		$(F77) $(USER_FFLAGS) -o  pfcoll_test pfcoll_test.f $(FLIBS)## Make sure that we remove executables for specific architecturesclean:	@-/bin/rm -f *.o *~ PI* $(EXECS) *.out core pt2pt.diff $(OTHEREXECS) \		*.trace rdb.* startup.* mpif.h ${srcdir}/*.o *.stdo	@-rm -f work.pc work.pcl	@-for file in $(EXECS) Makefile ; do \	   /bin/rm -f $$file.sun4 $$file.alpha $$file.IRIX $$file.freebsd ;\	done.c:	$(CC) $(CFLAGS) -o $* $< $(LIBS).c.o:	$(CC) $(CFLAGS) -c $<.o:	${CLINKER} $(OPTFLAGS) -o $* $*.o $(LIBS).f.o:	$(F77) $(FFLAGS) -c $<

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -