-
Notifications
You must be signed in to change notification settings - Fork 15
/
README.meson
289 lines (227 loc) · 10.9 KB
/
README.meson
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
# Building GALAHAD with [meson](https://mesonbuild.com)
# This version: GALAHAD 5.0 - 2024-06-07 AT 08:50 GMT.
# Alexis Montoison, for GALAHAD productions
All commands below are to be run from the top of the GALAHAD source tree.
# Cheat sheet
## If you are in a hurry ... default install (using gfortran/gcc) with tests
```shell
meson setup builddir/pc64.lnx.gfo -Dtests=true
meson compile -C builddir/pc64.lnx.gfo
meson install -C builddir/pc64.lnx.gfo
meson test -C builddir/pc64.lnx.gfo
```
## If you make a mistake!
```shell
meson setup --wipe builddir/pc64.lnx.gfo
```
## Performance of debugging?
meson setup builddir/pc64.lnx.gfo --buildtype=release (default)
meson setup builddir/pc64.lnx.gfo --buildtype=debug
## Static or shared libraries?
meson setup builddir/pc64.lnx.gfo -Ddefault_library=shared (default)
meson setup builddir/pc64.lnx.gfo -Ddefault_library=static
meson setup builddir/pc64.lnx.gfo -Ddefault_library=both
## 32-bit or 64-bit integers?
```shell
meson setup builddir/pc64.lnx.gfo -Dint64=false (default)
meson setup builddir/pc64.lnx.gfo -Dint64=true
```
Note that all dependencies (BLAS, LAPACK, METIS, etc...) must also be compiled with 64-bit integers.
To force Meson to not use a dependency compiled with 32-bit integers, you can use the option `-Dlibdep=`
where `libdep` is an option described below to provide the name of the library.
GALAHAD will not link with the dependency or compile its own 64-bit version, except for BLAS, LAPACK and METIS.
```shell
meson setup builddir/pc64.lnx.gfo -Dint64=true -Dlibblas= -Dliblapack= -Dlibmetis=
```
For instance, GALAHAD is compiled with our own version of BLAS, LAPACK and METIS.
# Details
## Install meson
Refer to https://mesonbuild.com/Getting-meson.html
## Set up the build directory and select build options
The command
```shell
meson setup builddir [options...]
```
creates the build directory `builddir` and populates it in preparation
for a build. Separate builds may be placed in separate `builddir`
subdirectories, e.g., builddir/pc64.lnx.gfo builddir/pc64.lnx.ifx as above
Currently supported options with their default value:
* `-Dmodules=true`: install Fortran modules;
* `-Dciface=true`: build the C interfaces;
* `-Dpythoniface=false`: build the Python interfaces in double precision;
* `-Dexamples=false`: generate the examples;
* `-Dtests=false`: generate the tests;
* `-Dsingle=true`: generate the single precision library, tests and examples;
* `-Ddouble=true`: generate the double precision library, tests and examples;
* `-Dssids=true`: build ssids;
* `-Dlibblas=openblas`: BLAS library against which to link;
* `-Dliblapack=openblas`: LAPACK library against which to link;
* `-Dlibhsl=hsl`: HSL library against which to link;
* `-Dlibcutest=cutest`: CUTEst library against which to link;
* `-Dlibwsmp=wsmp`: WSMP library against which to link;
* `-Dlibumfpack=umfpack`: UMFPACK library against which to link;
* `-Dlibpardiso=pardiso`: PARDISO library against which to link;
* `-Dlibspmf=spmf`: SPMF library against which to link;
* `-Dlibpastix=pastix`: PASTIX library against which to link;
* `-Dlibsmumps=smumps`: Single-precision MUMPS library against which to link;
* `-Dlibdmumps=dmumps`: Double-precision MUMPS library against which to link;
* `-Dlibampl=ampl`: AMPL library against which to link;
* `-Dlibhwloc=hwloc`: HWLOC library against which to link;
* `-Dlibblas_path=[]`: additional directories to search for the BLAS library;
* `-Dliblapack_path=[]`: additional directories to search for the LAPACK library;
* `-Dlibhsl_path=[]`: additional directories to search for the HSL library;
* `-Dlibcutest_path=[]`: additional directories to search for the CUTEST library;
* `-Dlibwsmp_path=[]`: additional directories to search for the WSMP library;
* `-Dlibpardiso_path=[]`: additional directories to search for the PARDISO library;
* `-Dlibspmf_path=[]`: additional directories to search for the SPMF library;
* `-Dlibpastix_path=[]`: additional directories to search for the PASTIX library;
* `-Dlibmumps_path=[]`: additional directories to search for the MUMPS libraries;
* `-Dlibampl_path=[]`: additional directories to search for the AMPL library library;
* `-Dlibhwloc_path=[]`: additional directories to search for the HWLOC library;
* `-Dlibhwloc_include=[]`: additional directories to search for the HWLOC header files;
* `-Dlibhsl_modules[]`: additional directories to search for the HSL modules;
* `-Dint64=false`: compile GALAHAD with 64-bit integer.
Non-default compilers can be selected by setting the `CC`, `CXX` and
`FC` shell variables. For instance,
```shell
CC=icc CXX=icpc FC=ifort meson setup builddir -Dssids=false [options...]
CC=icx CXX=icpx FC=ifx meson setup builddir [options...]
CC=nvc CXX=nvc++ FC=nvfortran meson setup builddir -Dc_std=none -Dcpp_std=none [options...]
```
See https://mesonbuild.com/Reference-tables.html for supported compilers
and linkers.
## Dependencies
### MKL Pardiso
Note that the Intel MKL Pardiso linear solver is only available when GALAHAD
is compiled with Intel MKL.
This implies that `libblas` or `liblapack` should be set to `mkl_rt`.
### HSL
To compile GALAHAD with the HSL subset, use the following commands:
```shell
meson setup builddir_int32 -Dlibmetis= -Dlibhsl=hsl_subset -Dlibhsl_path=... -Dlibhsl_modules=...
meson compile -C builddir_int32
meson setup builddir_int64 -Dint64=true -Dlibmetis= -Dlibhsl=hsl_subset_64 -Dlibhsl_path=... -Dlibhsl_modules=...
meson compile -C builddir_int64
```
## Build
The command
```shell
meson compile -C builddir
```
should result in several shared libraries and executables in `builddir`.
The executables are the example programs and unit tests.
They can be run right away:
```shell
./builddir/glrts
```
It is also possible (and equivalent) to build directly with Ninja:
```shell
ninja -C builddir
```
If ninja fails, run "ninja reconfigure" or "meson --reconfigure" to
force Meson to regenerate. If build failures persist, run "meson setup
--wipe builddir [options...]" to rebuild from scratch.
## Run Tests
The command
```shell
meson test -C builddir
```
runs the unit tests.
A unit test succeeds when the return code of the test executable is zero.
Similarly, the tests can be executed directly with Ninja:
```shell
ninja test -C builddir
```
Specify test(s) by name like:
```shell
meson test -C builddir ugo_single
```
Tests belonging to a suite can be run as follows:
```shell
meson test -C builddir --suite ugo
meson test -C builddir --suite single
meson test -C builddir --suite C
```
Currently supported suites:
* `package_name`;
* `fortran`;
* `C`;
* `Python`;
* `single`;
* `double`.
# Meson build tips for developers
## Add a new package in GALAHAD
To update the Meson build system for a new package `abcd`, the procedure
is composed of three steps.
The first one is to update the main `meson.build` at the root of GALAHAD
by adding the line `subdir("src/abcd")`.
The second step is to add a file `meson.build` in the subfolder
`src/abcd` of GALAHAD. Depending on whether the new package `abcd` has
C and Python interfaces, as well as multiple examples and tests in
different languages, the content of the file `meson.build` will look
like this:
```
libgalahad_src += files('abcd.F90')
libgalahad_c_src += files('C/abcd_ciface.F90')
galahad_binaries += [['abcd_program', files('abcd_program.F90')]]
libgalahad_python_src += [['abcd', files('Python/abcd_pyiface.c',
'../efgh/Python/efgh_pyiface.c','../ijkl/Python/ijkl_pyiface.c',
'../mnop/Python/mnop_pyiface.c','../qrst/Python/qrst_pyiface.c')]]
libgalahad_cutest_src += files('useabcd.F90')
galahad_cutest_binaries += [['runabcd_sif', files('runabcd_sif.F90')]]
galahad_tests += [['abcd', 'abcdt', files('abcdt.F90')],
['abcd', 'abcdti', files('abcdti.F90')]]
galahad_c_tests += [['abcd', 'abcdt_c', files('C/abcdt.c')],
['abcd', 'abcdtf_c', files('C/abcdtf.c')]]
galahad_python_tests += [['abcd', 'abcd_py', files('Python/test_abcd.py')]]
galahad_examples += [['abcds', files('abcds.f90')],
['abcds2', files('abcds2.f90')]]
galahad_c_examples += [['abcds_c', files('C/abcds.c')],
['abcds2_c', files('C/abcds2.c')]]
```
For `galahad_tests`, `galahad_c_tests` and `galahad_python_tests`, the
first value 'abcd' specifies the name of the package. Thanks to that,
we can run all tests of `abcd` with `meson test -C builddir --suite
abcd`. The second value of `galahad_tests`, `galahad_c_tests` and
`galahad_python_tests` specifies the name of the test. If a binary is
generated for the test, the binary has the same name as the test. A
specific test can be run with Meson thanks to the command `meson test -C
builddir abcdt`. Note that the binary has the suffix `.exe` on Windows.
The third value of `galahad_tests`, `galahad_c_tests` and
`galahad_python_tests` is the file that contains the test.
Similarly, the first value of `galahad_examples` and
`galahad_c_examples` is the name of the binary (without the suffix
`.exe` on Windows) based on the example file specified by the second
value.
The last step is to update the file `meson.build` in the subfolder
`include` of GALAHAD if the new package has a C interface. You need to
add a line `'galahad_abcd.h'` so that this new header can be installed.
## Create a new release of GALAHAD
When we do a new release of GALAHAD, we should update the `version`
(line 4) of the main `meson.build`.
## Variables defined in meson.build files
- `libgalahad_single_deps`: dependencies for single precision;
- `libgalahad_double_deps`: dependencies for double precision;
- `libgalahad_deps`: dependencies for both precision;
- `libgalahad_single_src`: Fortran files *.F90 or *.f90 for single precision;
- `libgalahad_double_src`: Fortran files *.F90 or *.f90 for double precision;
- `libgalahad_src`: Fortran files *.F90 or *.f90 for both precision;
- `libgalahad_f_single_src`: Fortran files *.f for single precision;
- `libgalahad_f_double_src`: Fortran files *.f for double precision;
- `libgalahad_f_src`: Fortran files *.f for both precision;
- `galahad_binaries`: Fortran files that contain programs;
- `galahad_headers`: Header files to install;
- `libgalahad_c_single_src`: Fortran files for the C interfaces in single precision;
- `libgalahad_c_double_src`: Fortran files for the C interfaces in double precision;
- `libgalahad_c_src`: Fortran files for the C interfaces in both precision;
- `libgalahad_python_src`: C files for the Python interfaces;
- `libgalahad_cutest_src`: Fortran files related to the CUTEst interfaces;
- `galahad_cutest_binaries`: Fortran files that contain CUTEst programs;
- `libgalahad_cpp_src`: C++ files required by GALAHAD;
- `libgalahad_cc_src`: C files required by GALAHAD;
- `galahad_examples`: Fortran examples;
- `galahad_tests`: Fortran tests;
- `galahad_c_examples`: C examples for the C interfaces;
- `galahad_c_tests`: C tests for the C interfaces;
- `galahad_python_tests`: Python tests for the Python interfaces;
- `libgalahad_include`: Folders that contain headers and Fortran modules.