1 |
ksteube |
1559 |
|
2 |
|
|
# Copyright 2006 by ACcESS MNRF |
3 |
|
|
# |
4 |
|
|
# http://www.access.edu.au |
5 |
|
|
# Primary Business: Queensland, Australia |
6 |
|
|
# Licensed under the Open Software License version 3.0 |
7 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
8 |
|
|
# |
9 |
|
|
|
10 |
|
|
# Configuration for Savanna |
11 |
|
|
|
12 |
ksteube |
1560 |
# MKL |
13 |
|
|
# mkl_path = '/sw/sdev/cmkl/10.0.2.18/include' |
14 |
|
|
# mkl_lib_path = '/sw/sdev/cmkl/10.0.2.18/lib/em64t' |
15 |
|
|
# mkl_libs = ['mkl_solver', 'mkl_lapack'] |
16 |
ksteube |
1559 |
|
17 |
ksteube |
1560 |
# ParMETIS |
18 |
|
|
# parmetis_path = '/sw/libs/parmetis/x86_64/gcc-4.1.2/parmetis-3.1/include' |
19 |
|
|
# parmetis_lib_path = '/sw/libs/parmetis/x86_64/gcc-4.1.2/parmetis-3.1/lib' |
20 |
|
|
# parmetis_lib = ['parmetis', 'metis'] |
21 |
ksteube |
1559 |
|
22 |
ksteube |
1560 |
# Python |
23 |
|
|
python_path = '/sw/apps/python/x86_64/gcc-4.1.2/python-2.4.4/include/python2.4' |
24 |
|
|
python_lib_path = '/sw/apps/python/x86_64/gcc-4.1.2/python-2.4.4/lib' |
25 |
|
|
python_lib = 'python2.4' |
26 |
ksteube |
1559 |
|
27 |
ksteube |
1560 |
# Boost |
28 |
|
|
boost_path = '/usr/include/boost' |
29 |
|
|
boost_lib_path = '/usr/lib64' |
30 |
|
|
boost_lib = 'boost_python' |
31 |
ksteube |
1559 |
|
32 |
ksteube |
1560 |
# Documentation |
33 |
|
|
# doxygen_path = '/sw/apps/.../bin' |
34 |
|
|
# epydoc_path = '/sw/apps/.../bin' |
35 |
ksteube |
1559 |
|
36 |
ksteube |
1560 |
# NetCDF |
37 |
|
|
useNetCDF = 'yes' |
38 |
|
|
netCDF_path = '/sw/libs/netcdf/x86_64/gcc-4.1.2/netcdf-3.6.2/include' |
39 |
|
|
netCDF_lib_path = '/sw/libs/netcdf/x86_64/gcc-4.1.2/netcdf-3.6.2/lib' |
40 |
|
|
netCDF_libs = ['netcdf_c++', 'netcdf'] |
41 |
ksteube |
1559 |
|
42 |
ksteube |
1560 |
# PAPI |
43 |
ksteube |
1559 |
papi_instrument_solver = 0 |
44 |
ksteube |
1560 |
# papi_path = '/sw/.../include' |
45 |
|
|
# papi_lib_path = '/sw/.../lib' |
46 |
|
|
# papi_libs = ['papi'] |
47 |
ksteube |
1559 |
|
48 |
ksteube |
1560 |
# MPI |
49 |
|
|
mpi_path = '/usr/include' |
50 |
|
|
mpi_lib_path = '/usr/lib64' |
51 |
|
|
mpi_libs = ['mpi'] |
52 |
|
|
mpi_run = 'mpirun -np 1' |
53 |
ksteube |
1559 |
|
54 |
ksteube |
1560 |
# OpenMP (comment out to disable OpenMP) |
55 |
|
|
omp_flags = '-openmp -openmp_report0' |
56 |
|
|
omp_flags_debug = '-openmp -openmp_report0' |
57 |
ksteube |
1559 |
|
58 |
ksteube |
1560 |
# C flags (also used by C++) |
59 |
|
|
cc_flags = '-O3 -ansi -fPIC -vec-report0 -ftz -IPF-fltacc- -IPF-fma -fno-alias -DBLOCKTIMER' |
60 |
|
|
cc_flags_debug = '-g -ansi -fPIC' |
61 |
ksteube |
1559 |
|
62 |
ksteube |
1560 |
# C++ flags |
63 |
|
|
cxx_flags = '' |
64 |
|
|
cxx_flags_debug = '-DDOASSERT -DDOPROF' |
65 |
ksteube |
1559 |
|
66 |
ksteube |
1560 |
# System-specific libraries to link with |
67 |
|
|
sys_libs = ['stdc++'] |
68 |
ksteube |
1559 |
|