[Beowulf] Problems installing HPL 2.0
Many of your questions may have already been answered in earlier discussions or in the FAQ. The search results page will indicate current discussions as well as past list serves, articles, and papers.
Hernandez, Hugo (NIH/NIAID) [C] hugo.hernandez at nih.govFri Mar 26 09:32:05 PDT 2010
- Previous message: [Beowulf] [hpc-announce] FW: EuroMPI 2010 Call for Papers (extended deadline April 19th)
- Next message: [Beowulf] Problems installing HPL 2.0
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello there, Can somebody help me on a problem I am experiencing when trying to install HPL 2.0 in our system? The error comes as the HPL_dlamch.c isn’t working because it can’t find the hpl.h include file. The file already exists in $(TOPdir)/include/hpl.h. Do I am missing something? I have added the directory /myApps/hpl-2.0/include into my LD_LIBRARY_PATH without any result. Could you please let me know how to work on this problem? All help will be really appreciated! Many thanks, -Hugo My system configuration: RHEL 5.4 Linux myMachine.com 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux openmpi-1.3.2-2.el5 /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc /usr/lib64/openmpi/1.3.2-gcc/bin/mpif90 Linear Algebra library: GotoBLAS2 Here is my make.arch file: SHELL = /bin/sh # CD = cd CP = cp LN_S = ln -s MKDIR = mkdir RM = /bin/rm -f TOUCH = touch # ARCH = Linux_x86_64 # - HPL Directory Structure / HPL library ------------------------------ TOPdir = /niaidAdmin/apps/hpl-2.0 INCdir = $(TOPdir)/include BINdir = $(TOPdir)/bin/$(ARCH) LIBdir = $(TOPdir)/lib/$(ARCH) # HPLlib = $(LIBdir)/libhpl.a # - Message Passing library (MPI) -------------------------------------- MPdir = /usr MPinc =-I$(MPdir)/include/openmpi MPlib = $(MPdir)/lib64/openmpi/libmpi.so # - Linear Algebra library (BLAS or VSIPL) ----------------------------- LAdir = /niaidAdmin/apps/GotoBLAS2 LAinc =-I$(MPdir)/include LAlib = $(LAdir)/libblas.so.3 $(LAdir)/atlas/libblas.so.3 # F2CDEFS = # HPL_INCLUDES = -I$(INCdir) -I$(INCdir)/$(ARCH) $(LAinc) $(MPinc) HPL_LIBS = $(HPLlib) $(LAlib) $(MPlib) # HPL_OPTS = -DHPL_CALL_CBLAS # ---------------------------------------------------------------------- HPL_DEFS = $(F2CDEFS) $(HPL_OPTS) $(HPL_INCLUDES) # - Compilers / linkers - Optimization flags --------------------------- CC = /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc CCNOOPT = CCFLAGS = $(HPL_DEFS) -pipe -O3 -funroll-loops # LINKER = /usr/lib64/openmpi/1.3.2-gcc/bin/mpif90 LINKFLAGS = $(CCFLAGS) # ARCHIVER = ar ARFLAGS = r RANLIB = echo And here is the error message: [root at test hpl-2.0]# make arch=niaid make -f Make.top startup_dir arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' mkdir include/niaid mkdir: cannot create directory `include/niaid': File exists make[1]: [startup_dir] Error 1 (ignored) mkdir lib mkdir: cannot create directory `lib': File exists make[1]: [startup_dir] Error 1 (ignored) mkdir lib/niaid mkdir: cannot create directory `lib/niaid': File exists make[1]: [startup_dir] Error 1 (ignored) mkdir bin mkdir: cannot create directory `bin': File exists make[1]: [startup_dir] Error 1 (ignored) mkdir bin/niaid mkdir: cannot create directory `bin/niaid': File exists make[1]: [startup_dir] Error 1 (ignored) make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top startup_src arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/auxil arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/auxil ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/auxil/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/blas arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/blas ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/blas/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/comm arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/comm ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/comm/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/grid arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/grid ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/grid/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/panel arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/panel ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/panel/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/pauxil arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/pauxil ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/pauxil/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/pfact arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/pfact ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/pfact/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=src/pgesv arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/pgesv ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd src/pgesv/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top startup_tst arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=testing/matgen arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd testing/matgen ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd testing/matgen/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=testing/timer arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd testing/timer ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd testing/timer/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=testing/pmatgen arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd testing/pmatgen ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd testing/pmatgen/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=testing/ptimer arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd testing/ptimer ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd testing/ptimer/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top leaf le=testing/ptest arch=niaid make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd testing/ptest ; mkdir niaid ) mkdir: cannot create directory `niaid': File exists make[2]: [leaf] Error 1 (ignored) ( cd testing/ptest/niaid ; \ ln -s /niaidAdmin/apps/hpl-2.0/Make.niaid Make.inc ) ln: creating symbolic link `Make.inc' to `/niaidAdmin/apps/hpl-2.0/Make.niaid': File exists make[2]: [leaf] Error 1 (ignored) make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top refresh_src arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' cp makes/Make.auxil src/auxil/niaid/Makefile cp makes/Make.blas src/blas/niaid/Makefile cp makes/Make.comm src/comm/niaid/Makefile cp makes/Make.grid src/grid/niaid/Makefile cp makes/Make.panel src/panel/niaid/Makefile cp makes/Make.pauxil src/pauxil/niaid/Makefile cp makes/Make.pfact src/pfact/niaid/Makefile cp makes/Make.pgesv src/pgesv/niaid/Makefile make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top refresh_tst arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' cp makes/Make.matgen testing/matgen/niaid/Makefile cp makes/Make.timer testing/timer/niaid/Makefile cp makes/Make.pmatgen testing/pmatgen/niaid/Makefile cp makes/Make.ptimer testing/ptimer/niaid/Makefile cp makes/Make.ptest testing/ptest/niaid/Makefile make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top refresh_src arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' cp makes/Make.auxil src/auxil/niaid/Makefile cp makes/Make.blas src/blas/niaid/Makefile cp makes/Make.comm src/comm/niaid/Makefile cp makes/Make.grid src/grid/niaid/Makefile cp makes/Make.panel src/panel/niaid/Makefile cp makes/Make.pauxil src/pauxil/niaid/Makefile cp makes/Make.pfact src/pfact/niaid/Makefile cp makes/Make.pgesv src/pgesv/niaid/Makefile make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top refresh_tst arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' cp makes/Make.matgen testing/matgen/niaid/Makefile cp makes/Make.timer testing/timer/niaid/Makefile cp makes/Make.pmatgen testing/pmatgen/niaid/Makefile cp makes/Make.ptimer testing/ptimer/niaid/Makefile cp makes/Make.ptest testing/ptest/niaid/Makefile make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make -f Make.top build_src arch=niaid make[1]: Entering directory `/niaidAdmin/apps/hpl-2.0' ( cd src/auxil/niaid; make ) make[2]: Entering directory `/niaidAdmin/apps/hpl-2.0/src/auxil/niaid' /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_dlacpy.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_dlacpy.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_dlatcpy.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_dlatcpy.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_fprintf.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_fprintf.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_warn.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_warn.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_abort.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_abort.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_dlaprnt.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_dlaprnt.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_dlange.o -c -DHPL_CALL_CBLAS -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include -I/niaidAdmin/apps/hpl-2.0/include/Linux_x86_64 -I/usr/include -I/usr/include/openmpi -pipe -O3 -funroll-loops ../HPL_dlange.c /usr/lib64/openmpi/1.3.2-gcc/bin/mpicc -o HPL_dlamch.o -c ../HPL_dlamch.c ../HPL_dlamch.c:50:17: error: hpl.h: No such file or directory ../HPL_dlamch.c:57: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c:60: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c:64: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c:67: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c:70: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c:74: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘STDC_ARGS’ ../HPL_dlamch.c: In function ‘HPL_dlamch’: ../HPL_dlamch.c:85: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘CMACH’ ../HPL_dlamch.c:164: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c:164: error: (Each undeclared identifier is reported only once ../HPL_dlamch.c:164: error: for each function it appears in.) ../HPL_dlamch.c:164: error: ‘HPL_rtwo’ undeclared (first use in this function) ../HPL_dlamch.c:166: error: ‘HPL_rzero’ undeclared (first use in this function) ../HPL_dlamch.c:176: error: ‘HPL_MACH_EPS’ undeclared (first use in this function) ../HPL_dlamch.c:177: error: ‘HPL_MACH_SFMIN’ undeclared (first use in this function) ../HPL_dlamch.c:178: error: ‘HPL_MACH_BASE’ undeclared (first use in this function) ../HPL_dlamch.c:179: error: ‘HPL_MACH_PREC’ undeclared (first use in this function) ../HPL_dlamch.c:180: error: ‘HPL_MACH_MLEN’ undeclared (first use in this function) ../HPL_dlamch.c:181: error: ‘HPL_MACH_RND’ undeclared (first use in this function) ../HPL_dlamch.c:182: error: ‘HPL_MACH_EMIN’ undeclared (first use in this function) ../HPL_dlamch.c:183: error: ‘HPL_MACH_RMIN’ undeclared (first use in this function) ../HPL_dlamch.c:184: error: ‘HPL_MACH_EMAX’ undeclared (first use in this function) ../HPL_dlamch.c:185: error: ‘HPL_MACH_RMAX’ undeclared (first use in this function) ../HPL_dlamch.c: In function ‘HPL_dlamc1’: ../HPL_dlamch.c:262: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c:274: error: ‘HPL_rtwo’ undeclared (first use in this function) ../HPL_dlamch.c: At top level: ../HPL_dlamch.c:345: warning: conflicting types for ‘HPL_dlamc2’ ../HPL_dlamch.c:345: error: static declaration of ‘HPL_dlamc2’ follows non-static declaration ../HPL_dlamch.c:161: error: previous implicit declaration of ‘HPL_dlamc2’ was here ../HPL_dlamch.c: In function ‘HPL_dlamc2’: ../HPL_dlamch.c:416: error: ‘HPL_rzero’ undeclared (first use in this function) ../HPL_dlamch.c:416: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c:416: error: ‘HPL_rtwo’ undeclared (first use in this function) ../HPL_dlamch.c:545: error: ‘stderr’ undeclared (first use in this function) ../HPL_dlamch.c: At top level: ../HPL_dlamch.c:583: error: conflicting types for ‘HPL_dlamc3’ ../HPL_dlamch.c:274: error: previous implicit declaration of ‘HPL_dlamc3’ was here ../HPL_dlamch.c:626: warning: conflicting types for ‘HPL_dlamc4’ ../HPL_dlamch.c:626: error: static declaration of ‘HPL_dlamc4’ follows non-static declaration ../HPL_dlamch.c:464: error: previous implicit declaration of ‘HPL_dlamc4’ was here ../HPL_dlamch.c: In function ‘HPL_dlamc4’: ../HPL_dlamch.c:667: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c:668: error: ‘HPL_rzero’ undeclared (first use in this function) ../HPL_dlamch.c: At top level: ../HPL_dlamch.c:698: warning: conflicting types for ‘HPL_dlamc5’ ../HPL_dlamch.c:698: error: static declaration of ‘HPL_dlamc5’ follows non-static declaration ../HPL_dlamch.c:570: error: previous implicit declaration of ‘HPL_dlamc5’ was here ../HPL_dlamch.c: In function ‘HPL_dlamc5’: ../HPL_dlamch.c:748: error: ‘HPL_rzero’ undeclared (first use in this function) ../HPL_dlamch.c:812: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c: At top level: ../HPL_dlamch.c:842: error: conflicting types for ‘HPL_dipow’ ../HPL_dlamch.c:164: error: previous implicit declaration of ‘HPL_dipow’ was here ../HPL_dlamch.c: In function ‘HPL_dipow’: ../HPL_dlamch.c:866: error: ‘HPL_rone’ undeclared (first use in this function) ../HPL_dlamch.c:871: error: ‘HPL_rzero’ undeclared (first use in this function) make[2]: *** [HPL_dlamch.o] Error 1 make[2]: Leaving directory `/niaidAdmin/apps/hpl-2.0/src/auxil/niaid' make[1]: *** [build_src] Error 2 make[1]: Leaving directory `/niaidAdmin/apps/hpl-2.0' make: *** [build] Error 2 -- Hugo R. Hernandez, Contractor Dell Perot Systems Sr. Systems Administrator Mac & Linux Server Team, OCICB/OEB National Institutes of Health National Institute of Allergy & Infectious Diseases 10401 Fernwood Drive Fernwood West - Rm. 2009 Bethesda, MD 20817 Phone: 301-841-4203 Cell: 240-479-1888 Fax: 301-480-0784 www.dell.com/perotsystems -- "Si seus esforços, foram vistos com indefrença, não desanime, que o sol faze un espectacolo maravilhoso todas as manhãs cuando a maior parte das pessoas, ainda estam durmindo" - Anónimo brasileiro Disclaimer: The information in this e-mail and any of its attachments is confidential and may contain sensitive information. It should not be used by anyone who is not the original intended recipient. If you have received this e-mail in error please inform the sender and delete it from your mailbox or any other storage devices. National Institute of Allergy and Infectious Diseases shall not accept liability for any statements made that are sender's own and not expressly made on behalf of the NIAID by one of its representatives.
- Previous message: [Beowulf] [hpc-announce] FW: EuroMPI 2010 Call for Papers (extended deadline April 19th)
- Next message: [Beowulf] Problems installing HPL 2.0
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Beowulf mailing list
