/[MITgcm]/MITgcm/tools/build_options/linux_amd64_ifort
ViewVC logotype

Annotation of /MITgcm/tools/build_options/linux_amd64_ifort

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (hide annotations) (download)
Tue Jul 31 22:26:20 2007 UTC (16 years, 9 months ago) by ce107
Branch: MAIN
CVS Tags: checkpoint60, checkpoint61, checkpoint62, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59g, checkpoint59f, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint59j, checkpoint62b, checkpoint62a, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.3: +4 -3 lines
Downgraded the default non-IEEE optimization level to -O2 to avoid trouble
with v.10 Intel compilers producing NaNs at -O3 (apart from -O3 -mp which
is slower than -O2)

1 ce107 1.1 #!/bin/bash
2     #
3 ce107 1.3 # Composed and tested by ce107 on ross/weddell (Opteron system)
4     # Should work fine on EM64T and other AMD64 compatible Intel systems
5     # a) Processor specific flags:
6     # 1) for more speed on Core2 processors replace -xW with -xT
7     # 2) for more speed on Pentium4 based EM64T processors replaces -xW with -xP
8     # b) For more speed, provided your data size doesn't exceed 2GB you can
9     # remove -fPIC which carries a performance penalty of 2-6%.
10     # c) Provided that the libraries you link to are compiled with -fPIC this
11     # optfile should work.
12     # d) You can replace -fPIC with -mcmodel=medium which may perform faster
13     # then -fPIC and still support data sizes over 2GB per process but all
14     # the libraries you link to myst be compiled with -fPIC or -mcmodel=medium
15 ce107 1.4 # e) Changed from -O3 to -O2 to avoid buggy Intel v.10 compilers. Speed
16     # impact appears to be minimal.
17 ce107 1.1 FC=ifort
18     F90C=ifort
19     CC=icc
20 ce107 1.3 LINK='ifort -i-dynamic -no-ipo'
21 ce107 1.1
22     DEFINES='-DWORDLENGTH=4'
23     CPP='cpp -traditional -P'
24     F90FIXEDFORMAT='-fixed -Tf'
25    
26     NOOPTFLAGS='-O0 -g -m64 -fPIC'
27     NOOPTFILES=''
28    
29     INCLUDEDIRS=''
30     INCLUDES=''
31     LIBS=''
32    
33     if test "x$DEVEL" != x ; then
34     FFLAGS='-132 -r8 -i4 -w95 -W0 -WB -convert big_endian -assume byterecl -fPIC -O0 -g -noalign -fpstkchk -check all -fpe0 -traceback -ftrapuv -fpmodel except -warn all'
35     else
36 utke 1.2 FFLAGS='-132 -r8 -i4 -w95 -W0 -WB -convert big_endian -assume byterecl -fPIC'
37 ce107 1.1 fi
38    
39     # Note that the -mp switch is for ieee "maintain precision" and is
40     # roughly equivalent to -ieee
41     if test "x$IEEE" = x ; then
42     # No need for IEEE-754
43 ce107 1.4 FOPTIM='-O2 -align -xW -ip'
44 ce107 1.1 else
45     # Try to follow IEEE-754
46     FOPTIM='-O2 -align -xW -ip -mp'
47     fi
48     F90FLAGS=$FFLAGS
49     F90OPTIM=$FOPTIM
50 ce107 1.4 CFLAGS='-O2 -ip -fPIC'
51 ce107 1.1
52     if [ "x$NETCDF_ROOT" != x ] ; then
53     INCLUDEDIRS="${NETCDF_ROOT}/include"
54     INCLUDES="-I${NETCDF_ROOT}/include"
55     LIBS="-L${NETCDF_ROOT}/lib"
56     elif [ "x$NETCDF_HOME" != x ]; then
57     INCLUDEDIRS="${NETCDF_HOME}/include"
58     INCLUDES="-I${NETCDF_HOME}/include"
59     LIBS="-L${NETCDF_HOME}/lib"
60     elif [ "x$NETCDF_INC" != x -a "x$NETCDF_LIB" != x ]; then
61     NETCDF_INC=`echo $NETCDF_INC | sed 's/-I//g'`
62     NETCDF_LIB=`echo $NETCDF_LIB | sed 's/-L//g'`
63     INCLUDEDIRS="${NETCDF_INC}"
64     INCLUDES="-I${NETCDF_INC}"
65     LIBS="-L${NETCDF_LIB}"
66     elif [ "x$NETCDF_INCDIR" != x -a "x$NETCDF_LIBDIR" != x ]; then
67     INCLUDEDIRS="${NETCDF_INCDIR}"
68     INCLUDES="-I${NETCDF_INCDIR}"
69     LIBS="-L${NETCDF_LIBDIR}"
70     elif test -d /usr/include/netcdf-3 ; then
71     INCLUDEDIRS='/usr/include/netcdf-3'
72     INCLUDES='-I/usr/include/netcdf-3'
73     LIBS='-L/usr/lib/netcdf-3 -L/usr/lib64/netcdf-3'
74     elif test -d /usr/include/netcdf ; then
75     INCLUDEDIRS='/usr/include/netcdf'
76     INCLUDES='-I/usr/include/netcdf'
77     elif test -d /usr/local/netcdf ; then
78     INCLUDEDIRS='/usr/include/netcdf/include'
79     INCLUDES='-I/usr/local/netcdf/include'
80     LIBS='-L/usr/local/netcdf/lib'
81     elif test -d /usr/local/include/netcdf.inc ; then
82     INCLUDEDIRS='/usr/local/include'
83     INCLUDES='-I/usr/local/include'
84     LIBS='-L/usr/local/lib64'
85     fi

  ViewVC Help
Powered by ViewVC 1.1.22