-
Notifications
You must be signed in to change notification settings - Fork 96
/
Makefile.in
726 lines (600 loc) · 21.5 KB
/
Makefile.in
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
#=====================================================================
#
# S p e c f e m 3 D G l o b e
# ----------------------------
#
# Main historical authors: Dimitri Komatitsch and Jeroen Tromp
# Princeton University, USA
# and CNRS / University of Marseille, France
# (there are currently many more authors!)
# (c) Princeton University and CNRS / University of Marseille, April 2014
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#=====================================================================
#
# @configure_input@
#######################################
FC = @FC@
FCFLAGS = @FCFLAGS@
FC_DEFINE = @FC_DEFINE@
MPIFC = @MPIFC@
MPILIBS = @MPILIBS@
FLAGS_CHECK = @FLAGS_CHECK@
FCFLAGS_f90 = -I${SETUP} @FCFLAGS_f90@ -I@top_builddir@
FC_MODEXT = @FC_MODEXT@
FC_MODDIR = @FC_MODDIR@
FCCOMPILE_CHECK =@FCENV@ ${FC} ${FCFLAGS} $(FLAGS_CHECK)
MPIFCCOMPILE_CHECK =@FCENV@ ${MPIFC} ${FCFLAGS} $(FLAGS_CHECK)
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = -I${SETUP} @CPPFLAGS@
CXX = @CXX@
CXXFLAGS = -I${SETUP} @CXXFLAGS@
FCLINK = $(MPIFCCOMPILE_CHECK)
#######################################
####
#### MPI
####
#######################################
## MPI directories for CUDA / OpenCL
MPI_INCLUDES = @MPI_INCLUDES@
MPI_CPPFLAGS = $(FC_DEFINE)WITH_MPI
#######################################
####
#### GPU
#### with configure: ./configure --with-cuda=cuda5 CUDA_FLAGS=.. CUDA_LIB=.. CUDA_INC=.. MPI_INC=.. ..
#### with configure: ./configure --with-opencl OCL_GPU_FLAGS=.. OCL_LIB=.. OCL_INC=.. MPI_INC=.. ..
#### with configure: ./configure --with-hip HIP_FLAGS=.. HIP_LIB=.. HIP_INC=.. MPI_INC=.. ..
####
#######################################
# Reduce GPU-register pressure by limited the number of thread spread
# (GPU for embedded devices are not powerful enough for big kernels)
# Must match mesh_constants_gpu.h::GPU_ELEM_PER_THREAD
GPU_ELEM_PER_THREAD := 1
##
## CUDA
##
@COND_CUDA_TRUE@CUDA = yes
@COND_CUDA_FALSE@CUDA = no
@COND_CUDA4_TRUE@CUDA4 = yes
@COND_CUDA4_FALSE@CUDA4 = no
@COND_CUDA5_TRUE@CUDA5 = yes
@COND_CUDA5_FALSE@CUDA5 = no
@COND_CUDA6_TRUE@CUDA6 = yes
@COND_CUDA6_FALSE@CUDA6 = no
@COND_CUDA7_TRUE@CUDA7 = yes
@COND_CUDA7_FALSE@CUDA7 = no
@COND_CUDA8_TRUE@CUDA8 = yes
@COND_CUDA8_FALSE@CUDA8 = no
@COND_CUDA9_TRUE@CUDA9 = yes
@COND_CUDA9_FALSE@CUDA9 = no
@COND_CUDA10_TRUE@CUDA10 = yes
@COND_CUDA10_FALSE@CUDA10 = no
@COND_CUDA11_TRUE@CUDA11 = yes
@COND_CUDA11_FALSE@CUDA11 = no
@COND_CUDA12_TRUE@CUDA12 = yes
@COND_CUDA12_FALSE@CUDA12 = no
# CUDA compilation with linking
@COND_CUDA_PLUS_TRUE@CUDA_PLUS = yes
@COND_CUDA_PLUS_FALSE@CUDA_PLUS = no
# CUDA-aware MPI flag
@COND_CUDA_AWARE_MPI_TRUE@CUDA_MPI_FLAG = $(FC_DEFINE)WITH_CUDA_AWARE_MPI
@COND_CUDA_AWARE_MPI_FALSE@CUDA_MPI_FLAG =
@COND_CUDA_AWARE_MPI_TRUE@FCFLAGS += $(CUDA_MPI_FLAG)
# default cuda libraries
# runtime library -lcudart needed, others are optional -lcuda -lcublas
CUDA_FLAGS = @CUDA_FLAGS@
CUDA_INC = @CUDA_CPPFLAGS@
CUDA_LINK = @CUDA_LDFLAGS@ @CUDA_LIBS@ -lstdc++
CUDA_DEBUG = --cudart=shared
@COND_CUDA_TRUE@NVCC = nvcc
@COND_CUDA_FALSE@NVCC = @CC@
##
## GPU architecture
##
# CUDA architecture / code version
# Fermi (not supported): -gencode=arch=compute_10,code=sm_10
# Tesla (Tesla C2050, GeForce GTX 480): -gencode=arch=compute_20,code=sm_20
# Tesla (cuda4, K10, Geforce GTX 650, GT 650m): -gencode=arch=compute_30,code=sm_30
# Kepler (cuda5, K20) : -gencode=arch=compute_35,code=sm_35
# Kepler (cuda6.5, K80): -gencode=arch=compute_37,code=sm_37
# Maxwell (cuda6.5+/cuda7, Quadro K2200): -gencode=arch=compute_50,code=sm_50
# Pascal (cuda8,P100, GeForce GTX 1080, Titan): -gencode=arch=compute_60,code=sm_60
# Volta (cuda9, V100): -gencode=arch=compute_70,code=sm_70
# Turing (cuda10, T4, GeForce RTX 2080): -gencode=arch=compute_75,code=sm_75
# Ampere (cuda11, A100, GeForce RTX 3080): -gencode=arch=compute_80,code=sm_80
# Hopper (cuda12, H100): -gencode=arch=compute_90,code=sm_90
GENCODE_20 = -gencode=arch=compute_20,code=\"sm_20,compute_20\"
GENCODE_30 = -gencode=arch=compute_30,code=\"sm_30,compute_30\"
GENCODE_35 = -gencode=arch=compute_35,code=\"sm_35,compute_35\"
GENCODE_37 = -gencode=arch=compute_37,code=\"sm_37\"
GENCODE_50 = -gencode=arch=compute_50,code=\"sm_50,compute_50\"
GENCODE_52 = -gencode=arch=compute_52,code=\"sm_52,compute_52\"
GENCODE_60 = -gencode=arch=compute_60,code=\"sm_60,compute_60\"
GENCODE_70 = -gencode=arch=compute_70,code=\"sm_70,compute_70\"
GENCODE_75 = -gencode=arch=compute_75,code=\"sm_75,compute_75\"
GENCODE_80 = -gencode=arch=compute_80,code=\"sm_80,compute_80\"
GENCODE_90 = -gencode=arch=compute_90,code=\"sm_90,compute_90\"
# cuda preprocessor flag
# CUDA version 12.0
@COND_CUDA_TRUE@@COND_CUDA12_TRUE@GENCODE = $(GENCODE_90) $(FC_DEFINE)GPU_DEVICE_Hopper
# CUDA version 11.0
@COND_CUDA_TRUE@@COND_CUDA11_TRUE@GENCODE = $(GENCODE_80) $(FC_DEFINE)GPU_DEVICE_Ampere
# CUDA version 10.0
@COND_CUDA_TRUE@@COND_CUDA10_TRUE@GENCODE = $(GENCODE_75) $(FC_DEFINE)GPU_DEVICE_Turing
# CUDA version 9.0
@COND_CUDA_TRUE@@COND_CUDA9_TRUE@GENCODE = $(GENCODE_70) $(FC_DEFINE)GPU_DEVICE_Volta
# CUDA version 8.0
@COND_CUDA_TRUE@@COND_CUDA8_TRUE@GENCODE = $(GENCODE_60) $(FC_DEFINE)GPU_DEVICE_Pascal
# CUDA version 7.x
@COND_CUDA_TRUE@@COND_CUDA7_TRUE@GENCODE = $(GENCODE_52) $(FC_DEFINE)GPU_DEVICE_Maxwell
# CUDA version 6.5
@COND_CUDA_TRUE@@COND_CUDA6_TRUE@GENCODE = $(GENCODE_37) $(FC_DEFINE)GPU_DEVICE_K80
# CUDA version 5.x
@COND_CUDA_TRUE@@COND_CUDA5_TRUE@GENCODE = $(GENCODE_35) $(FC_DEFINE)GPU_DEVICE_K20
# CUDA version 4.x
@COND_CUDA_TRUE@@COND_CUDA4_TRUE@GENCODE = $(GENCODE_30)
## old CUDA toolkit versions < 5
@COND_CUDA_TRUE@@COND_CUDA_PLUS_FALSE@GENCODE = $(GENCODE_20)
# CUDA flags and linking
@COND_CUDA_TRUE@NVCC_FLAGS_BASE = $(CUDA_FLAGS) $(CUDA_INC) $(CUDA_DEBUG) $(CUDA_MPI_FLAG) $(MPI_CPPFLAGS) $(MPI_INCLUDES)
@COND_CUDA_TRUE@@COND_CUDA_PLUS_TRUE@NVCC_FLAGS = $(NVCC_FLAGS_BASE) -dc $(GENCODE)
@COND_CUDA_TRUE@@COND_CUDA_PLUS_FALSE@NVCC_FLAGS = $(NVCC_FLAGS_BASE) -DUSE_OLDER_CUDA4_GPU $(GENCODE)
@COND_CUDA_TRUE@NVCCLINK_BASE = $(NVCC) $(CUDA_INC) $(MPI_INCLUDES)
@COND_CUDA_TRUE@@COND_CUDA_PLUS_TRUE@NVCCLINK = $(NVCCLINK_BASE) -dlink $(GENCODE)
@COND_CUDA_TRUE@@COND_CUDA_PLUS_FALSE@NVCCLINK = $(NVCCLINK_BASE) -DUSE_OLDER_CUDA4_GPU $(GENCODE)
@COND_CUDA_FALSE@NVCC_FLAGS =
@COND_CUDA_FALSE@NVCCLINK = $(NVCC) $(NVCC_FLAGS)
##
## OpenCL
##
@COND_OCL_TRUE@OCL = yes
@COND_OCL_FALSE@OCL = no
OCL_CPU_FLAGS = @OCL_CPU_FLAGS@ $(CUDA_MPI_FLAG) $(MPI_CPPFLAGS) $(MPI_INCLUDES)
OCL_GPU_FLAGS = @OCL_GPU_FLAGS@
OCL_INC = @OCL_CFLAGS@
OCL_LINK = @OCL_LDFLAGS@ @OCL_LIBS@
##
## HIP
##
@COND_HIP_TRUE@HIP = yes
@COND_HIP_FALSE@HIP = no
# GPU architecture / code version
# see: https://llvm.org/docs/AMDGPUUsage.html
# Radeon Instinct MI8: --amdgpu-target=gfx803
# Radeon Instinct MI25: --amdgpu-target=gfx900
# Radeon Instinct MI50: --amdgpu-target=gfx906
# Radeon Instinct MI100: --amdgpu-target=gfx908
# Radeon Instinct MI210/250/250X: --amdgpu-target=gfx90a
GENCODE_AMD_MI8 = --amdgpu-target=gfx803
GENCODE_AMD_MI25 = --amdgpu-target=gfx900
GENCODE_AMD_MI50 = --amdgpu-target=gfx906
GENCODE_AMD_MI100 = --amdgpu-target=gfx908
GENCODE_AMD_MI250 = --amdgpu-target=gfx90a
# default targets
# AMD default MI50 & MI100
@COND_HIP_TRUE@@COND_HIP_PLATFORM_AMD_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI50) $(GENCODE_AMD_MI100)
@COND_HIP_TRUE@@COND_HIP_PLATFORM_AMD_TRUE@HIP_CFLAG_ENDING = -x hip # HIP compilation of src/gpu/*.c files
# NVIDIA default Tesla
@COND_HIP_TRUE@@COND_HIP_PLATFORM_NVIDIA_TRUE@GENCODE_HIP = $(GENCODE_30)
@COND_HIP_TRUE@@COND_HIP_PLATFORM_NVIDIA_TRUE@HIP_CFLAG_ENDING = -x cu # CUDA compilation or src/gpu/*.c files
# specific targets
@COND_HIP_TRUE@@COND_HIP_MI8_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI8) $(FC_DEFINE)GPU_DEVICE_MI8 # --with-hip=MI8 ..
@COND_HIP_TRUE@@COND_HIP_MI25_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI25) $(FC_DEFINE)GPU_DEVICE_MI25 # --with-hip=MI25 ..
@COND_HIP_TRUE@@COND_HIP_MI50_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI50) $(FC_DEFINE)GPU_DEVICE_MI50 # --with-hip=MI50 ..
@COND_HIP_TRUE@@COND_HIP_MI100_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI100) $(FC_DEFINE)GPU_DEVICE_MI100 # --with-hip=MI100 ..
@COND_HIP_TRUE@@COND_HIP_MI250_TRUE@GENCODE_HIP = $(GENCODE_AMD_MI250) $(FC_DEFINE)GPU_DEVICE_MI250 # --with-hip=MI250 ..
@COND_HIP_TRUE@@COND_HIP_CUDA5_TRUE@GENCODE_HIP = $(GENCODE_35) # --with-hip=cuda5 ..
@COND_HIP_TRUE@@COND_HIP_CUDA6_TRUE@GENCODE_HIP = $(GENCODE_37) # --with-hip=cuda6 ..
@COND_HIP_TRUE@@COND_HIP_CUDA7_TRUE@GENCODE_HIP = $(GENCODE_52) # --with-hip=cuda7 ..
@COND_HIP_TRUE@@COND_HIP_CUDA8_TRUE@GENCODE_HIP = $(GENCODE_60) # --with-hip=cuda8 ..
@COND_HIP_TRUE@@COND_HIP_CUDA9_TRUE@GENCODE_HIP = $(GENCODE_70) # --with-hip=cuda9 ..
@COND_HIP_TRUE@@COND_HIP_CUDA10_TRUE@GENCODE_HIP = $(GENCODE_75) # --with-hip=cuda10 ..
@COND_HIP_TRUE@@COND_HIP_CUDA11_TRUE@GENCODE_HIP = $(GENCODE_80) # --with-hip=cuda11 ..
@COND_HIP_TRUE@@COND_HIP_CUDA12_TRUE@GENCODE_HIP = $(GENCODE_90) # --with-hip=cuda12 ..
HIP_FLAGS = @HIP_FLAGS@
HIP_INC = @HIP_CPPFLAGS@ $(CUDA_MPI_FLAG) $(MPI_CPPFLAGS) $(MPI_INCLUDES)
@COND_HIP_TRUE@HIPCC = @HIPCC@
@COND_HIP_FALSE@HIPCC = @CC@
@COND_HIP_TRUE@HIP_CFLAGS = $(HIP_FLAGS) $(HIP_INC) $(GENCODE_HIP)
@COND_HIP_TRUE@HIP_LINK = @HIP_LDFLAGS@ @HIP_LIBS@
@COND_HIP_FALSE@HIP_CFLAGS =
@COND_HIP_FALSE@HIP_LINK =
## linking with hipcc instead of mpif90
## openMPI
#MPI_LIB_PATH = -L$(shell ${MPIFC} --showme:libdirs)
#MPI_LIBS += $(shell ${MPIFC} --showme:libs)
#MPI_LIBS += $(shell mpicxx --showme:libs)
#SET_MPI_LIB = ${MPI_LIB_PATH} $(shell echo ${MPI_LIBS} | sed -e 's/\b\([a-z]\+\)[ ,\n]\1/\1/g'|sed 's/[^ ]* */-l&/g')
#FCLINK = $(HIPCC) $(SET_MPI_LIB)
## mpich
# from: mpif90 -link_info
#FCLINK = $(HIPCC) -L/usr/lib/x86_64-linux-gnu -lmpichfort -lmpich -lgfortran -lm -shared-libgcc
# GPU flags
# allows for compilation of CUDA and OpenCL kernels together
ifeq ($(OCL), yes)
ifeq ($(CUDA), yes)
GPU_CUDA_AND_OCL = yes
endif
endif
# checks if any GPU flag set
ifeq ($(OCL), no)
ifeq ($(CUDA), no)
ifeq ($(HIP), no)
NO_GPU = yes
endif
endif
endif
ifneq ($(NO_GPU), yes)
HAS_GPU = yes # not used any further, but could to allow only specific subdirs included
endif
#######################################
####
#### MIC
#### with configure: ./configure --with-mic
####
#######################################
# native compilation
@COND_MIC_TRUE@MIC = yes
@COND_MIC_FALSE@MIC = no
@COND_MIC_TRUE@MIC_FLAGS = -mmic #-qopt-report2 -qopt-report-phase=vec
@COND_MIC_TRUE@FCFLAGS += $(MIC_FLAGS)
@COND_MIC_TRUE@CPPFLAGS += $(MIC_FLAGS)
#######################################
####
#### LIBXSMM
#### with configure: ./configure --with-xsmm LIBXSMM_INC=/opt/libxsmm/include \
#### LIBXSMM_LIBS=/opt/libxsmm/lib \
#### BLAS_LIBS=/opt/local/lib/lapack
####
#######################################
@COND_XSMM_TRUE@XSMM = yes
@COND_XSMM_FALSE@XSMM = no
@COND_XSMM_TRUE@FCFLAGS += $(FC_DEFINE)USE_XSMM -I@LIBXSMM_INC@
@COND_XSMM_TRUE@MPILIBS += -L@LIBXSMM_LIBS@ -lxsmmf -lxsmm -lxsmmext -L@BLAS_LIBS@ -lblas
##
## C++ Parallel STL support
## for sorting and creating ibool addressing
## with configure: ./configure --with-parallel-stl PSTL_LIB="-L/opt/local/lib" \
## CXXFLAGS="-O2 -std=c++17 -I/opt/local/include"
##
@COND_PARALLEL_STL_TRUE@PARALLEL_STL = yes
@COND_PARALLEL_STL_FALSE@PARALLEL_STL = no
@COND_PARALLEL_STL_TRUE@PARALLEL_STL_DEF = $(FC_DEFINE)USE_PARALLEL_STL_SORTING
@COND_PARALLEL_STL_FALSE@PARALLEL_STL_DEF =
@COND_PARALLEL_STL_TRUE@PARALLEL_STL_LIBS += @PSTL_LIB@ -lstdc++ -ltbb
@COND_PARALLEL_STL_FALSE@PARALLEL_STL_LIBS +=
@COND_PARALLEL_STL_TRUE@FCFLAGS += $(PARALLEL_STL_DEF)
@COND_PARALLEL_STL_TRUE@MPILIBS += $(PARALLEL_STL_LIBS)
#######################################
####
#### OpenMP
#### with configure: ./configure --enable-openmp OMP_FCFLAGS=".." OMP_LIB=..
####
#######################################
@COND_OMP_TRUE@OPENMP = yes
@COND_OMP_FALSE@OPENMP = no
@COND_OMP_TRUE@FCFLAGS += $(FC_DEFINE)USE_OPENMP @OMP_FCFLAGS@ #$(FC_DEFINE)USE_OPENMP_ATOMIC_INSTEAD_OF_CRITICAL
@COND_OMP_TRUE@OMP_LIBS = $(OMP_LIB)
@COND_OMP_FALSE@OMP_LIBS =
#######################################
####
#### VTK
#### with configure: ./configure --enable-vtk ..
####
#######################################
@COND_VTK_TRUE@VTK = yes
@COND_VTK_FALSE@VTK = no
@COND_VTK_TRUE@CPPFLAGS += @VTK_INCLUDES@
@COND_VTK_TRUE@LDFLAGS += @VTK_LDFLAGS@
@COND_VTK_TRUE@MPILIBS += @VTK_LIBS@
#######################################
####
#### ADIOS
#### with configure: ./configure --with-adios ADIOS_CONFIG=..
####
#######################################
@COND_ADIOS_TRUE@ADIOS = yes
@COND_ADIOS_FALSE@ADIOS = no
@COND_ADIOS_TRUE@ADIOS_DEF = $(FC_DEFINE)USE_ADIOS
@COND_ADIOS_FALSE@ADIOS_DEF =
@COND_ADIOS_TRUE@FCFLAGS += @ADIOS_FCFLAGS@ $(ADIOS_DEF)
@COND_ADIOS_TRUE@MPILIBS += @ADIOS_LIBS@
#######################################
####
#### ADIOS2
#### with configure: ./configure --with-adios2 ADIOS2_CONFIG=..
####
#######################################
@COND_ADIOS2_TRUE@ADIOS2 = yes
@COND_ADIOS2_FALSE@ADIOS2 = no
@COND_ADIOS2_TRUE@ADIOS2_DEF = $(FC_DEFINE)USE_ADIOS2
@COND_ADIOS2_FALSE@ADIOS2_DEF =
@COND_ADIOS2_TRUE@FCFLAGS += @ADIOS2_FCFLAGS@ $(ADIOS2_DEF)
@COND_ADIOS2_TRUE@MPILIBS += @ADIOS2_LIBS@
@COND_ADIOS2_TRUE@CPPFLAGS += @ADIOS2_CFLAGS@
@COND_ADIOS2_TRUE@MPILIBS += @ADIOS2_CLIBS@
@COND_ADIOS2_TRUE@MPICC = @MPICC@
@COND_ADIOS2_FALSE@MPICC = $(CC)
#######################################
####
#### ASDF
#### with configure: ./configure --with-asdf ASDF_LIBS=..
####
#######################################
@COND_ASDF_TRUE@ASDF = yes
@COND_ASDF_FALSE@ASDF = no
#FCFLAGS += @ASDF_FCFLAGS@
@COND_ASDF_TRUE@MPILIBS += @ASDF_LIBS@ -lasdf -lhdf5hl_fortran -lhdf5_hl -lhdf5 -lstdc++
#######################################
####
#### FORCE_VECTORIZATION
#### with configure: ./configure --with-vec ..
####
#######################################
@COND_VECTORIZATION_TRUE@FORCE_VECTORIZATION = yes
@COND_VECTORIZATION_FALSE@FORCE_VECTORIZATION = no
#######################################
####
#### NetCDF
#### with configure: ./configure --with-netcdf NETCDF_LIBS=.. NETCDF_FCFLAGS=.. NETCDF_INC=..
####
#######################################
@COND_NETCDF_TRUE@NETCDF = yes
@COND_NETCDF_FALSE@NETCDF = no
# adds compiler flag
@COND_NETCDF_TRUE@FCFLAGS += @NETCDF_FCFLAGS@ @NETCDF_INCLUDES@
@COND_NETCDF_TRUE@MPILIBS += @NETCDF_LIBS@
#######################################
####
#### CEM
#### with configure: ./configure --with-cem CEM_LIBS=.. CEM_FCFLAGS=..
####
#######################################
# (requires Netcdf support)
@COND_CEM_TRUE@CEM = yes
@COND_CEM_FALSE@CEM = no
# adds compiler flag
@COND_CEM_TRUE@FCFLAGS += ${FC_DEFINE}USE_CEM @CEM_FCFLAGS@
@COND_CEM_TRUE@MPILIBS += @CEM_LIBS@
#######################################
####
#### IRIS EMC models
#### with configure: ./configure --with-emc EMC_LIBS=.. EMC_FCFLAGS=..
####
#######################################
# (requires Netcdf support)
@COND_EMC_TRUE@EMC = yes
@COND_EMC_FALSE@EMC = no
# adds compiler flag
@COND_EMC_TRUE@FCFLAGS += ${FC_DEFINE}USE_EMC @EMC_FCFLAGS@
@COND_EMC_TRUE@MPILIBS += @EMC_LIBS@
#######################################
## static compilation
#######################################
# requires OUTPUT_FILES/values_from_mesher.h for compilation of the solver
# needs to recompile executables for different simulation setups
# turned off by default
@COND_STATIC_COMPILATION_TRUE@STATIC_COMPILATION = yes
@COND_STATIC_COMPILATION_FALSE@STATIC_COMPILATION = no
ifeq ($(STATIC_COMPILATION), yes)
FCFLAGS += ${FC_DEFINE}USE_STATIC_COMPILATION
endif
#######################################
####
#### directories
####
#######################################
## compilation directories
# B : build directory
B = @top_builddir@
# E : executables directory
E = $B/bin
# O : objects directory
O = $B/obj
# S_TOP : source file root directory
S_TOP = @top_srcdir@
# L : libraries directory
L = $B/lib
# setup file directory
SETUP = $B/setup
# output file directory
OUTPUT = $B/OUTPUT_FILES
#######################################
####
#### targets
####
#######################################
# code subdirectories
SUBDIRS = \
auxiliaries \
create_header_file \
gpu \
meshfem3D \
shared \
specfem3D \
tomography \
tomography/postprocess_sensitivity_kernels \
$(EMPTY_MACRO)
#ifeq ($(HAS_GPU),yes)
# SUBDIRS := gpu $(SUBDIRS)
#endif
# default targets
DEFAULT = \
xcreate_header_file \
xmeshfem3D \
xspecfem3D \
xcombine_AVS_DX \
xcombine_surf_data \
xcombine_surf_data_vtk \
xcombine_surf_data_vtu \
xcombine_vol_data \
xcombine_vol_data_vtk \
xcombine_vol_data_vtu \
xconvolve_source_timefunction \
xcreate_movie_AVS_DX \
xcreate_movie_GMT_global \
xwrite_profile \
$(EMPTY_MACRO)
ifeq ($(ADIOS), yes)
DEFAULT += \
xcombine_vol_data_adios \
xcombine_vol_data_vtk_adios \
xcombine_vol_data_vtu_adios \
$(EMPTY_MACRO)
endif
#ifeq ($(ADIOS2), yes)
#DEFAULT += \
# xcombine_vol_data_adios2 \
# xcombine_vol_data_vtk_adios2 \
# $(EMPTY_MACRO)
#endif
all: default aux movies postprocess tomography
default: $(DEFAULT)
ifdef CLEAN
clean:
@echo "cleaning by CLEAN"
-rm -f $(foreach dir, $(CLEAN), $($(dir)_OBJECTS) $($(dir)_MODULES) $($(dir)_SHARED_OBJECTS) $($(dir)_TARGETS))
-rm -f ${E}/*__genmod.*
-rm -f ${O}/*__genmod.*
-rm -f ${O}/*.smod
-rm -f ${O}/*.lst
else
clean:
@echo "cleaning all"
-rm -f $(foreach dir, $(SUBDIRS), $($(dir)_OBJECTS) $($(dir)_MODULES) $($(dir)_TARGETS))
-rm -f ${E}/*__genmod.*
-rm -f ${O}/*__genmod.*
-rm -f ${O}/*.smod
-rm -f ${O}/*.lst
endif
realclean: clean
-rm -rf $E/* $O/*
# unit testing
# If the first argument is "test"...
ifeq (test,$(findstring test,firstword $(MAKECMDGOALS)))
# use the rest as arguments for "run"
TEST_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
# turn them into do-nothing targets
$(eval $(TEST_ARGS):;@:)
endif
tests:
@echo "testing in directory: ${S_TOP}/tests/"
cd ${S_TOP}/tests; ./run_all_tests.sh $(TEST_ARGS)
@echo ""
help:
@echo "usage: make [executable]"
@echo ""
@echo "supported main executables:"
@echo " xmeshfem3D"
@echo " xspecfem3D"
@echo ""
@echo "defaults:"
@echo " xcreate_header_file"
@echo " xmeshfem3D"
@echo " xspecfem3D"
@echo " xcombine_AVS_DX"
@echo " xcombine_surf_data"
@echo " xcombine_surf_data_vtk"
@echo " xcombine_vol_data"
@echo " xcombine_vol_data_vtk"
@echo " xconvolve_source_timefunction"
@echo " xcreate_movie_AVS_DX"
@echo " xcreate_movie_GMT_global"
@echo " xwrite_profile"
@echo ""
@echo "additional executables:"
@echo "- auxiliary executables: [make aux]"
@echo " xcombine_vol_data"
@echo " xcombine_vol_data_vtk"
@echo " xcombine_vol_data_vtu"
ifeq ($(ADIOS), yes)
@echo " xcombine_vol_data_adios"
@echo " xcombine_vol_data_vtk_adios"
@echo " xcombine_vol_data_vtu_adios"
endif
ifeq ($(ADIOS2), yes)
@echo " xcombine_vol_data_adios2"
@echo " xcombine_vol_data_vtk_adios2"
@echo " xcombine_vol_data_vtu_adios2"
endif
@echo " xcombine_surf_data"
@echo " xcombine_surf_data_vtk"
@echo " xcombine_surf_data_vtu"
@echo " xcombine_AVS_DX"
@echo " xconvolve_source_timefunction"
@echo " xwrite_profile"
@echo ""
@echo "- movie executables: [make movies]"
@echo " xcreate_movie_AVS_DX"
@echo " xcreate_movie_GMT_global"
@echo " xcombine_paraview_strain_data"
@echo ""
@echo "- sensitivity kernel postprocessing tools: [make postprocess]"
@echo " xaddition_sem"
@echo " xclip_sem"
@echo " xcombine_sem"
@echo " xcreate_cross_section"
@echo " xdifference_sem"
@echo " xinterpolate_model"
@echo " xsmooth_sem"
@echo " xsmooth_laplacian_sem"
ifeq ($(ADIOS), yes)
@echo " xconvert_model_file_adios"
endif
ifeq ($(ADIOS2), yes)
@echo " xconvert_model_file_adios2"
endif
@echo ""
@echo "- tomography tools: [make tomography]"
@echo " xadd_model_iso"
@echo " xadd_model_tiso"
@echo " xadd_model_tiso_cg"
@echo " xadd_model_tiso_iso"
@echo " xsum_kernels"
@echo " xsum_preconditioned_kernels"
@echo ""
@echo "for unit testing:"
@echo " tests"
@echo ""
.PHONY: all default clean realclean help tests
#######################################
# Get dependencies and rules for building stuff
include $(patsubst %, ${S_TOP}/src/%/rules.mk, $(SUBDIRS))
#######################################
##
## Shortcuts
##
# Shortcut for: <prog>/<xprog> -> bin/<xprog>
define target_shortcut
$(patsubst $E/%, %, $(1)): $(1)
.PHONY: $(patsubst $E/%, %, $(1))
$(patsubst $E/x%, %, $(1)): $(1)
.PHONY: $(patsubst $E/x%, %, $(1))
endef
# Shortcut for: dir -> src/dir/<targets in here>
define shortcut
$(1): $($(1)_TARGETS)
.PHONY: $(1)
$$(foreach target, $$(filter $E/%,$$($(1)_TARGETS)), $$(eval $$(call target_shortcut,$$(target))))
endef
$(foreach dir, $(SUBDIRS), $(eval $(call shortcut,$(dir))))
# testing
test : tests
# Other old shortcuts
mesh: $E/xmeshfem3D
spec: $E/xspecfem3D
.PHONY: mesh spec