1 |
|
2 |
######################################################## |
3 |
# |
4 |
# Copyright (c) 2003-2008 by University of Queensland |
5 |
# Earth Systems Science Computational Center (ESSCC) |
6 |
# http://www.uq.edu.au/esscc |
7 |
# |
8 |
# Primary Business: Queensland, Australia |
9 |
# Licensed under the Open Software License version 3.0 |
10 |
# http://www.opensource.org/licenses/osl-3.0.php |
11 |
# |
12 |
######################################################## |
13 |
|
14 |
|
15 |
# Configuration for Savanna (SGI ICE 8200 running SUSE Linux) |
16 |
|
17 |
# If you cannot use the default compiler flags set in SConstruct, then change them here |
18 |
# C/C++ Compiler flags (always use cc_flags and either cc_optim or cc_debug) |
19 |
# cc_flags = '-ansi' |
20 |
# cc_optim = '-O2' |
21 |
# usedebug= 'no' |
22 |
# cc_debug = '-g' |
23 |
# omp_optim = '-openmp' |
24 |
# omp_debug = '-openmp' |
25 |
# omp_libs = [] |
26 |
|
27 |
# Use the default C/C++ flags but add something only for this host: |
28 |
# cc_extra = '' |
29 |
# ld_extra = '' |
30 |
|
31 |
# Be picky about errors |
32 |
# usepedantic = 'no' |
33 |
|
34 |
# Extra libraries |
35 |
# sys_libs = [] |
36 |
|
37 |
# Python libraries |
38 |
# python_path = '/sw/apps/python/x86_64/gcc-4.1.2/python-2.4.4/include/python2.4' |
39 |
# python_lib_path = '/sw/apps/python/x86_64/gcc-4.1.2/python-2.4.4/lib' |
40 |
# python_libs = 'python2.5' |
41 |
# python_cmd = 'python' |
42 |
|
43 |
# Boost libraries |
44 |
# boost_path = '/sw/libs/boost/x86_64/gcc-4.1.2/python-2.4.4/boost_1_33/include/boost-1_33' |
45 |
# boost_lib_path = '/sw/libs/boost/x86_64/gcc-4.1.2/python-2.4.4/boost_1_33/lib' |
46 |
# boost_libs = ['boost_python-gcc'] |
47 |
|
48 |
# Specify whether or not to use VTK |
49 |
usevtk = 'yes' |
50 |
|
51 |
# NetCDF |
52 |
usenetcdf = 'yes' |
53 |
netCDF_path = '/usr/include' |
54 |
netCDF_lib_path = '/usr/lib/' |
55 |
netCDF_libs = ['netcdf_c++', 'netcdf'] |
56 |
|
57 |
# MKL |
58 |
# usemkl = 'yes' |
59 |
# mkl_path = '/sw/sdev/cmkl/10.0.2.18/include' |
60 |
# mkl_lib_path = '/sw/sdev/cmkl/10.0.2.18/lib/em64t' |
61 |
# mkl_libs = ['mkl_solver', 'mkl_em64t', 'mkl_core', 'guide', 'pthread'] |
62 |
|
63 |
# UMFPACK (requires AMD and BLAS) |
64 |
useumfpack = 'yes' |
65 |
|
66 |
# ufc_path = '/usr/include' |
67 |
# umf_path = '/usr/include' |
68 |
# umf_lib_path = '/usr/lib' |
69 |
# umf_libs = ['umfpack'] |
70 |
# amd_path = '/usr/include' |
71 |
# amd_lib_path = '/usr/lib' |
72 |
# amd_libs = ['amd'] |
73 |
# blas_path = '/usr/include/' |
74 |
# blas_lib_path = '/usr/lib/' |
75 |
# blas_libs = ['blas'] |
76 |
|
77 |
# OpenMP |
78 |
useopenmp = 'no' |
79 |
|
80 |
# MPICH2 (to run Escript use: module load mpich2/gcc-4.1.2/mpich2-1.0.7) |
81 |
usempi= 'yes' |
82 |
mpi_path = '/usr/include/mpi' |
83 |
mpi_lib_path = '/usr/lib' |
84 |
mpi_libs = ['mpi_cxx', 'mpi', 'open-rte', 'open-pal'] |
85 |
mpi_run = 'mpiexec -np 4' |
86 |
|
87 |
# MPICH2 for jumpshot (to run Escript use: module load mpich2/gcc-4.1.2/mpich2-1.0.7) |
88 |
# mpi_path = '/home/Work/InstallArea/mpich2-1.0.7/include' |
89 |
# mpi_lib_path = '/home/Work/InstallArea/mpich2-1.0.7/lib' |
90 |
# mpi_libs = ['lmpe', 'mpe', 'mpich', 'rt'] |
91 |
# mpi_run = 'mpirun -np 1' |
92 |
|
93 |
# ParMETIS (for use with MPI) |
94 |
useparmetis = 'yes' |
95 |
parmetis_path = '/usr/local/include' |
96 |
parmetis_lib_path = '/usr/local/lib' |
97 |
parmetis_libs = ['parmetis', 'metis'] |
98 |
|
99 |
# PAPI |
100 |
# usepapi = 'no' |
101 |
# papi_path = '/usr/include' |
102 |
# papi_lib_path = '/usr/lib' |
103 |
# papi_libs = ['papi'] |
104 |
# papi_instrument_solver = 'no' |
105 |
|