123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- #
- # This is just a sample Make.
- # The user may need to edit:
- # 1.) TOPdir
- # 2.) MPI variables (MPdir,MPinc,MPlib)
- # 3.) MKL BLAS variables (LAdir, LAinc, LAlib)
- # 4.) The Compiler and Compiler/Linker Options (CC,CCFLAGS)
- #
- #
- # -- High Performance Computing Linpack Benchmark (HPL)
- # HPL - 1.0a - January 20, 2004
- # Antoine P. Petitet
- # University of Tennessee, Knoxville
- # Innovative Computing Laboratories
- # (C) Copyright 2000-2004 All Rights Reserved
- #
- # -- Copyright notice and Licensing terms:
- #
- # Redistribution and use in source and binary forms, with or without
- # modification, are permitted provided that the following conditions
- # are met:
- #
- # 1. Redistributions of source code must retain the above copyright
- # notice, this list of conditions and the following disclaimer.
- #
- # 2. Redistributions in binary form must reproduce the above copyright
- # notice, this list of conditions, and the following disclaimer in the
- # documentation and/or other materials provided with the distribution.
- #
- # 3. All advertising materials mentioning features or use of this
- # software must display the following acknowledgement:
- # This product includes software developed at the University of
- # Tennessee, Knoxville, Innovative Computing Laboratories.
- #
- # 4. The name of the University, the name of the Laboratory, or the
- # names of its contributors may not be used to endorse or promote
- # products derived from this software without specific written
- # permission.
- #
- # -- Disclaimer:
- #
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY
- # OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- # DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- # ######################################################################
- #
- # ----------------------------------------------------------------------
- # - shell --------------------------------------------------------------
- # ----------------------------------------------------------------------
- #
- SHELL = /bin/sh
- #
- CD = cd
- CP = cp
- LN_S = ln -fs
- MKDIR = mkdir -p
- RM = /bin/rm -f
- TOUCH = touch
- #
- # ----------------------------------------------------------------------
- # - Platform identifier ------------------------------------------------
- # ----------------------------------------------------------------------
- #
- ARCH = ia32
- #
- # ----------------------------------------------------------------------
- # - HPL Directory Structure / HPL library ------------------------------
- # ----------------------------------------------------------------------
- #
- # Set TOPdir to the location where this is being built
- TOPdir = /home/rfvander/RCCE/RCCE/apps/XHPL
- INCdir = $(TOPdir)/include
- BINdir = $(TOPdir)/bin/$(ARCH)
- LIBdir = $(TOPdir)/lib/$(ARCH)
- #
- HPLlib = $(LIBdir)/libhpl.a
- ifeq "$(version)" "hybrid"
- HPLlibHybrid = $(TOPdir)/lib_hybrid/$(ARCH)/libhpl_hybrid.a
- else
- HPLlibHybrid =
- endif
- #
- # ----------------------------------------------------------------------
- # - Message Passing library (MPI) --------------------------------------
- # ----------------------------------------------------------------------
- # MPinc tells the C compiler where to find the Message Passing library
- # header files, MPlib is defined to be the name of the library to be
- # used. The variable MPdir is only used for defining MPinc and MPlib.
- #
- #MPdir = /opt/intel/mpi/3.0
- #MPinc = -I$(MPdir)/include
- #MPlib = $(MPdir)/lib/libmpi.a
- #MPlib = $(MPdir)/lib/libmpich.a
- #
- # ----------------------------------------------------------------------
- # - Linear Algebra library (BLAS) -----------------------------
- # ----------------------------------------------------------------------
- # LAinc tells the C compiler where to find the Linear Algebra library
- # header files, LAlib is defined to be the name of the library to be
- # used. The variable LAdir is only used for defining LAinc and LAlib.
- #
- #LAdir = $(TOPdir)/../../lib/32
- #LAdir =/opt/intel/cmkl/10.0.3.020/lib/32
- #LAdir = /opt/intel/mkl/8.1.1/lib/32
- LAinc = -I/opt/intel/mkl/8.1.1/include
- ifeq "$(version)" "hybrid"
- #LAlib = $(LAdir)/libmkl_intel.a $(LAdir)/libmkl_intel_thread.a $(LAdir)/libmkl_core.a $(LAdir)/libguide.a -lpthread $(HPLlibHybrid)
- else
- #LAlib = $(LAdir)/libmkl_intel.a $(LAdir)/libmkl_sequential.a $(LAdir)/libmkl_core.a
- LAlib = -L/shared/intel/mkl/8.1.1/lib/32 -lmkl_ia32 -lmkl_lapack -lmkl_solver -openmp
- endif
- #
- # ----------------------------------------------------------------------
- # - F77 / C interface --------------------------------------------------
- # ----------------------------------------------------------------------
- # You can skip this section if and only if you are not planning to use
- # a BLAS library featuring a Fortran 77 interface. Otherwise, it is
- # necessary to fill out the F2CDEFS variable with the appropriate
- # options. **One and only one** option should be chosen in **each** of
- # the 3 following categories:
- #
- # 1) name space (How C calls a Fortran 77 routine)
- #
- # -DAdd_ : all lower case and a suffixed underscore (Suns,
- # Intel, ...), [default]
- # -DNoChange : all lower case (IBM RS6000),
- # -DUpCase : all upper case (Cray),
- # -DAdd__ : the FORTRAN compiler in use is f2c.
- #
- # 2) C and Fortran 77 integer mapping
- #
- # -DF77_INTEGER=int : Fortran 77 INTEGER is a C int, [default]
- # -DF77_INTEGER=long : Fortran 77 INTEGER is a C long,
- # -DF77_INTEGER=short : Fortran 77 INTEGER is a C short.
- #
- # 3) Fortran 77 string handling
- #
- # -DStringSunStyle : The string address is passed at the string loca-
- # tion on the stack, and the string length is then
- # passed as an F77_INTEGER after all explicit
- # stack arguments, [default]
- # -DStringStructPtr : The address of a structure is passed by a
- # Fortran 77 string, and the structure is of the
- # form: struct {char *cp; F77_INTEGER len;},
- # -DStringStructVal : A structure is passed by value for each Fortran
- # 77 string, and the structure is of the form:
- # struct {char *cp; F77_INTEGER len;},
- # -DStringCrayStyle : Special option for Cray machines, which uses
- # Cray fcd (fortran character descriptor) for
- # interoperation.
- #
- #F2CDEFS = -DAdd__ -DF77_INTEGER=int -DStringSunStyle
- F2CDEFS = -DF77_INTEGER=int -DStringSunStyle
- #F2CDEFS = -DF77_INTEGER=int
- #
- # ----------------------------------------------------------------------
- # - HPL includes / libraries / specifics -------------------------------
- # ----------------------------------------------------------------------
- #
- HPL_INCLUDES = -I$(INCdir) -I$(INCdir)/$(ARCH) $(LAinc) $(MPinc)
- HPL_LIBS = $(HPLlib) $(LAlib) $(MPlib)
- #
- # - Compile time options -----------------------------------------------
- #
- # -DHPL_COPY_L force the copy of the panel L before bcast;
- # -DHPL_CALL_CBLAS call the cblas interface;
- # -DHPL_DETAILED_TIMING enable detailed timers;
- # -DASYOUGO enable timing information as you go (nonintrusive)
- # -DASYOUGO2 slightly intrusive timing information
- # -DASYOUGO2_DISPLAY display detailed DGEMM information
- # -DENDEARLY end the problem early
- # -DFASTSWAP insert to use DLASWP instead of HPL code
- # -DHYBRID use for Hybrid OpenMP/MPI mode
- #
- # By default HPL will:
- # *) not copy L before broadcast,
- # *) call the BLAS Fortran 77 interface,
- # *) not display detailed timing information.
- #
- #
- #HPL_OPTS = -DHPL_CALL_CBLAS
- # ----------------------------------------------------------------------
- #
- HPL_DEFS = $(F2CDEFS) $(HPL_OPTS) $(HPL_INCLUDES)
- #
- # ----------------------------------------------------------------------
- # - Compilers / linkers - Optimization flags ---------------------------
- # ----------------------------------------------------------------------
- #
- # Comment in the next two lines for GNU Compilers:
- # CC = mpicc
- # CCFLAGS = $(HPL_DEFS) -fomit-frame-pointer -O3 -funroll-loops -W -Wall
- # Comment in the next two lines for Intel Compilers:
- CC = $(CCOMPILE)
- ifeq "$(CC)" "icc"
- # NOCOMPCHK=-nocompchk
- NOCOMPCHK=-nocompchk
- endif
- ifeq "$(version)" "hybrid"
- MKLINCDIR = -I"$(TOPdir)/../../include"
- CCFLAGS = $(HPL_DEFS) $(MKLINCDIR) -O3 -i-static $(CFLAGS) $(NOCOMPCHK)
- else
- CCFLAGS = $(HPL_DEFS) -O3 -w $(CFLAGS) $(NOCOMPCHK)
- endif
- #
- CCNOOPT = $(HPL_DEFS) -O0 -w $(NOCOMPCHK)
- #
- # On some platforms, it is necessary to use the Fortran linker to find
- # the Fortran internals used in the BLAS library.
- #
- LINKER = $(CC)
- ifeq "$(version)" "hybrid"
- LINKFLAGS = $(CCFLAGS)
- else
- LINKFLAGS = $(CCFLAGS)
- endif
- #
- ARCHIVER = ar
- ARFLAGS = r
- RANLIB = echo
- #
- # ----------------------------------------------------------------------
- MAKE = make TOPdir=$(TOPdir)
|