Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jryates committed Dec 19, 2007
1 parent 658cb2d commit 58ef46d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions README.install
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Linux x86,x86-64
Compiler: Intel (ifc,ifort,iforte)
Libraries: Intel mkl
(ATLAS BLAS is faster for AMD processors)
**Note: we have found an issue with ifort and ATLAS3.8.0. In certain cases BLAS calls return
NANs. The origin of this is unclear - we'd welcome any further reports.**

2- make.sys.pathscale
Compiler: Pathscale (pathf90)
Expand All @@ -73,13 +75,22 @@ Linux x86,x86-64
Libraries: ATLAS + LAPACK (maybe acml)
[note in our experience the NAG compiler does not produce well optimised code]

4- make.sys
Compiler: Sun-studio f90
Libraries: sunperf (ATLAS is faster)
avaible as a free beta for Linux

Generic: Most architectures
---------------------------
1- make.sys.g95
Compiler: g95
Libraries: ATLAS + LAPACK

2- make.sys.gfort
Compiler: gfortran
Libraries: ATLAS + LAPACK
(the official gcc f90 compiler - often faster than g95)


Alpha/HP/Compaq/DEC Tru64 UNIX
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/make.sys.qe
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FCOPTS=$(F90FLAGS)
# as ../flib/*.a, when what we need is ../../flib*.a

LIBS = `echo $(LAPACK_LIBS) | sed -e "s/..\/flib/..\/..\/flib/g"` \
`echo $(BLAS_LIBS) | sed -e "s/..\/flib/..\/..\/flib/g" $(MASS_LIBS)
`echo $(BLAS_LIBS) | sed -e "s/..\/flib/..\/..\/flib/g"` $(MASS_LIBS)



10 changes: 5 additions & 5 deletions config/make.sys.sun
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#==============
# Sun / Solaris
#==============
#===========================
# Sun f90 / Solaris or linux
#===========================

F90 = f90
FCOPTS = -fast -xO3 -xarch=v9b -xlic_lib=sunperf
LDOPTS = -fast -xO3 -xarch=v9b -xlic_lib=sunperf
FCOPTS = -fast -xO3 -xlic_lib=sunperf
LDOPTS = -fast -xO3 -xlic_lib=sunperf
LIBS =


Expand Down

0 comments on commit 58ef46d

Please sign in to comment.