1 |
|
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 |
# flag the MPI settings |
11 |
# useMPI = 'yes' |
12 |
# trilinos_path="/home/Work/trilinos-6/include" |
13 |
# trilinos_lib_path="/home/Work/trilinos-6/lib" |
14 |
# trilinos_libs=["aztecoo", "teuchos", "epetra"] |
15 |
|
16 |
|
17 |
# TODO: Variables named *_path should be *_include |
18 |
|
19 |
# locations of libs etc used by mkl |
20 |
# mkl_path = '/opt/intel/mkl80.019/include' |
21 |
# mkl_lib_path ='/opt/intel/mkl80.019/lib/64' |
22 |
# mkl_libs = ['mkl_solver', 'mkl_lapack', 'mkl_ipf'] |
23 |
|
24 |
mpi_path = '/home/Work/mpich2-1.0.5p4/include' |
25 |
mpi_lib_path = '/home/Work/mpich2-1.0.5p4/lib' |
26 |
mpi_libs = ['mpich', 'rt'] |
27 |
mpi_run = 'mpirun -np 1' |
28 |
|
29 |
# locations of libs etc used by SCSL |
30 |
# scsl_path = '/usr/include' |
31 |
# scsl_lib_path = '/usr/lib' |
32 |
# scsl_libs = ['scs_mp'] |
33 |
# scsl_libs_MPI = [ 'scs', 'mpi' ] |
34 |
|
35 |
# Location of ParMETIS library |
36 |
parmetis_path = '/home/Work/Downloads/ParMetis-3.1' |
37 |
parmetis_lib_path = '/home/Work/Downloads/ParMetis-3.1' |
38 |
parmetis_lib = ['parmetis', 'metis'] |
39 |
|
40 |
# locations of include files for python |
41 |
# python_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/include/python2.4' |
42 |
# python_lib_path = '/data/raid2/toolspp4/python/2.4.1/gcc-3.3.6/lib' |
43 |
# python_lib = 'python2.4' |
44 |
|
45 |
# locations of libraries for boost |
46 |
# boost_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/include' |
47 |
# boost_lib_path = '/data/raid2/toolspp4/boost/1.33.1/python-2.4.1/gcc-3.3.6/lib' |
48 |
# boost_lib = 'boost_python-mt' |
49 |
|
50 |
# locations of doc building executables |
51 |
doxygen_path = '/usr/bin' |
52 |
epydoc_path = '/usr/bin' |
53 |
|
54 |
# locations of netcdf |
55 |
useNetCDF="yes" |
56 |
netCDF_path = "/home/Work/netcdf-3.6.1/include" |
57 |
netCDF_lib_path = "/home/Work/netcdf-3.6.1/lib" |
58 |
netCDF_libs = [ 'netcdf_c++', 'netcdf'] |
59 |
|
60 |
# locations of PAPI |
61 |
# papi_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/include' |
62 |
# papi_lib_path = '/data/raid2/toolspp4/papi/3.0.8.1/gcc-3.3.6/lib' |
63 |
# papi_libs = [ 'papi' ] |
64 |
|
65 |
# Comment all this stuff |
66 |
# c flags to use |
67 |
# cc_flags = '-O -fPIC' |
68 |
# cc_flags_debug = '-g -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
69 |
|
70 |
# c++ flags to use |
71 |
# cxx_flags = '-fPIC' |
72 |
# cxx_flags_debug = '-DDOASSERT -UDOPROF -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
73 |
|
74 |
# c and c++ flags for MPI compilation |
75 |
# c flags to use |
76 |
# cc_flags_MPI = '-O -DPASO_MPI -fPIC' |
77 |
# cc_flags_debug_MPI = '-g -DPASO_MPI -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
78 |
|
79 |
# c++ flags to use |
80 |
# cxx_flags_MPI = '-fPIC' |
81 |
# cxx_flags_debug_MPI = '-DDOASSERT -UDOPROF -fPIC -DTRILINOS -I/home/Work/trilinos-6/include' |
82 |
|
83 |
# system specific libraries to link with |
84 |
# sys_libs = [] |