-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_cp2k_toolchain.sh
executable file
·1262 lines (1170 loc) · 49.9 KB
/
install_cp2k_toolchain.sh
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash -e
[ "${BASH_SOURCE[0]}" ] && SCRIPT_NAME="${BASH_SOURCE[0]}" || SCRIPT_NAME=$0
SCRIPT_DIR="$(cd "$(dirname "$SCRIPT_NAME")" && pwd -P)"
# +-----------------------------------------------------------------------+
# | CP2K: A general program to perform molecular dynamics simulations |
# | Copyright (C) 2000 - 2019 CP2K developers group |
# +-----------------------------------------------------------------------+
#
# *****************************************************************************
#> \brief This script will compile and install or link existing tools and
#> libraries CP2K depends on and generate a set of ARCH files which
#> can be used to compile CP2K
#> \history Created on Friday, 2016/02/05
#> \author Lianheng Tong (ltong) [email protected]
# *****************************************************************************
# ------------------------------------------------------------------------
# Work directories and used files
# ------------------------------------------------------------------------
export ROOTDIR="${PWD}"
export SCRIPTDIR="${ROOTDIR}/scripts"
export BUILDDIR="${ROOTDIR}/build"
export INSTALLDIR="${ROOTDIR}/install"
export SETUPFILE="${INSTALLDIR}/setup"
export SHA256_CHECKSUM="${SCRIPTDIR}/checksums.sha256"
export ARCH_FILE_TEMPLATE="${SCRIPTDIR}/arch_base.tmpl"
# ------------------------------------------------------------------------
# Make a copy of all options for $SETUPFILE
# ------------------------------------------------------------------------
TOOLCHAIN_OPTIONS="$@"
# ------------------------------------------------------------------------
# Load common variables and tools
# ------------------------------------------------------------------------
source "${SCRIPTDIR}"/common_vars.sh
source "${SCRIPTDIR}"/tool_kit.sh
# ------------------------------------------------------------------------
# Documentation
# ------------------------------------------------------------------------
show_help() {
cat<<EOF
This script will help you compile and install, or link libraries
CP2K depends on and setup a set of ARCH files that you can use
to compile CP2K.
USAGE:
$(basename $SCRIPT_NAME) [options]
OPTIONS:
-h, --help Show this message.
-j <n> Number of processors to use for compilation, if
this option is not present, then the script
automatically tries to determine the number of
processors you have and try to use all of the
processors.
--no-check-certificate If you encounter "certificate verification" errors
from wget or ones saying that "common name doesn't
match requested host name" while at tarball downloading
stage, then the recommended solution is to install
the newest wget release. Alternatively, you can use
this option to bypass the verification and proceed with
the download. Security wise this should still be okay
as the installation script will check file checksums
after every tarball download. Nevertheless use this
option at your own risk.
--install-all This option will set value of all --with-PKG
options to "install". You can selectively set
--with-PKG to another value again by having the
--with-PKG option placed AFTER this option on the
command line.
--mpi-mode Selects which MPI flavour to use. Available options
are: mpich, openmpi and no. By selecting no, you will
be disabling MPI support. By default the script
will try to determine the flavour based on the MPI library
currently available in your system path. For CRAY (CLE)
systems, the default flavour is mpich. Note that explicitly
setting --with-mpich or --with-openmpi options to values
other than no will also switch --mpi-mode to the respective
mode.
--math-mode Selects which core math library to use. Available options
are: acml, cray, mkl, openblas and reflapack. cray
corresponds to cray libsci, and is the default for CRAY
(CLE) systems. For non-CRAY systems, if env variable MKLROOT
exists then mkl will be default, otherwise openblas is the
default option. Note that reflapack corresponds to the
reference LAPACK library, and is not really recommended for
CP2K binaries used for real simulations. Explicitly setting
--with-acml, --with-mkl or --with-openblas options will
switch --math-mode to the respective modes, BUT
--with-reflapack option do not have this effect.
--gpu-ver Selects the GPU architecture for which to compile. Available
options are: K20X, K40, K80, P100, no. Default: no.
The script will determine the correct corresponding value for
nvcc's '-arch' flag.
The --enable-FEATURE options follow the rules:
--enable-FEATURE=yes Enable this particular feature
--enable-FEATHRE=no Disable this particular feature
--enable-FEATURE The option keyword alone is equivalent to
--enable-FEATURE=yes
--enable-tsan If you are installing GCC using this script
this option enables thread sanitizer support.
This is only relevant for debugging purposes.
Default = no
--enable-gcc-master If you are installing GCC using this script
this option forces the master development version
to be installed.
Default = no
--enable-libxsmm-master If you are installing libxsmm using this script
this option forces the master development version
to be installed.
Default = no
--enable-omp Turn on OpenMP (threading) support.
Default = yes
--enable-cuda Turn on GPU (CUDA) support.
Default = no
--enable-cray Turn on or off support for CRAY Linux Environment
(CLE) manually. By default the script will automatically
detect if your system is CLE, and provide support
accordingly.
The --with-PKG options follow the rules:
--with-PKG=install Will download the package in \$PWD/build and
install the library package in \$PWD/install.
--with-PKG=system The script will then try to find the required
libraries of the package from the system path
variables such as PATH, LD_LIBRARY_PATH and
CPATH etc.
--with-PKG=no Do not use the package.
--with-PKG=<path> The package will be assumed to be installed in
the given <path>, and be linked accordingly.
--with-PKG The option keyword alone will be equivalent to
--with-PKG=install
--with-gcc The GCC compiler to use to compile CP2K
Default = system
--with-binutils GNU binutils
Default = system
--with-make GNU make
Default = system
--with-cmake Cmake utilities, required for building ParMETIS
Default = no
--with-valgrind Valgrind memory debugging tool, only used for
debugging purposes.
Default = no
--with-lcov LCOV code coverage utility, mainly used by CP2K developers
Default = no
--with-openmpi OpenMPI, important if you want parallel version
of CP2K.
Default = system
--with-mpich MPICH, MPI library like OpenMPI. one should
only use EITHER OpenMPI or MPICH and not both.
Default = system
--with-libxc libxc, exchange-correlation library. Needed for
QuickStep DFT and hybrid calculations.
Default = install
--with-libint libint, library for evaluation of two-body molecular
integrals, needed for hybrid functional calculations
Default = install
--with-fftw FFTW3, library for fast fourier transform
Default = install
--with-reflapack Reference (vanilla) LAPACK and BLAS linear algebra libraries.
One should use only ONE linear algebra library. This
one is really mostly used for debugging purposes as it is
non-optimised.
Default = no
--with-acml AMD core maths library, which provides LAPACK and BLAS
Default = system
--with-mkl Intel maths kernel library, which provides LAPACK and BLAS,
and depending on your system, may also provide ScaLAPACK.
If the MKL version of ScaLAPACK is found, then it will replace
the one specified by --with-scalapack option.
Default = system
--with-openblas OpenBLAS is a free high performance LAPACK and BLAS library,
the successor to GotoBLAS.
Default = install
--with-scalapack Parallel linear algebra library, needed for parallel
calculations.
Default = install
--with-libsmm CP2K's own small matrix multiplication library. An optimised
libsmm should increase the code performance. If you set
--with-libsmm=install, then instead of actually compiling
the library (which may take a long time), the script will
try to download a preexisting version from the CP2K website
that is compatible with your system.
Default = no
--with-libxsmm Small matrix multiplication library for x86_64 systems. If
your system arch is x86_64, then you can use libxsmm
instead of libsmm.
Default = install
--with-elpa Eigenvalue SoLvers for Petaflop-Applications library.
Fast library for large parallel jobs.
Default = install
--with-ptscotch PT-SCOTCH, only used if PEXSI is used
Default = no
--with-parmetis ParMETIS, and if --with-parmetis=install will also install
METIS, only used if PEXSI is used
Default = no
--with-metis METIS, --with-metis=install actually does nothing, because
METIS is installed together with ParMETIS. This option
is used to specify the METIS library if it is pre-installed
else-where. Only used if PEXSI is used
Default = no
--with-superlu SuperLU DIST, used only if PEXSI is used
Default = no
--with-pexsi Enable interface to PEXSI library
Default = no
--with-quip Enable interface to QUIP library
Default = no
--with-sirius Enable interface to the plane wave SIRIUS library.
This package requires: gsl, libspg, elpa, scalapack, json-fortran, hdf5 and libxc.
Default = install
--with-gsl Enable the gnu scientific library
Default = install
--with-spglib Enable the spg library (search of symmetry groups)
This package depends on cmake.
Default = install
--with-hdf5 Enable the hdf5 library (used by the sirius library)
Default = install
--with-json-fortran Enable the json fortran library (used by cp2k when sirius is activated)
This package depends on cmake.
Default = install
FURTHER INSTRUCTIONS
All packages to be installed locally will be downloaded and built inside
./build, and then installed into package specific directories inside
./install.
Both ./build and ./install are safe to delete, as they contain
only the files and directories that are generated by this script. However,
once all the packages are installed, and you compile CP2K using the arch
files provided by this script, then you must keep ./install in exactly
the same location as it was first created, as it contains tools and libraries
your version of CP2K binary will depend on.
It should be safe to terminate running of this script in the middle of a
build process. The script will know if a package has been successfully
installed, and will just carry on and recompile and install the last
package it is working on. This is true even if you lose the content of
the entire ./build directory.
+----------------------------------------------------------------+
| YOU SHOULD ALWAYS SOURCE ./install/setup BEFORE YOU RUN CP2K |
| COMPILED WITH THIS TOOLCHAIN |
+----------------------------------------------------------------+
EOF
}
# ------------------------------------------------------------------------
# PACKAGE LIST: register all new dependent tools and libs here. Order
# is important, the first in the list gets installed first
# ------------------------------------------------------------------------
tool_list="binutils lcov valgrind make cmake gcc"
mpi_list="mpich openmpi"
math_list="mkl acml openblas reflapack"
lib_list="fftw libint libxc libsmm libxsmm scalapack elpa \
ptscotch parmetis metis superlu pexsi quip gsl spglib hdf5 sirius json_fortran"
package_list="$tool_list $mpi_list $math_list $lib_list"
# ------------------------------------------------------------------------
# first set everything to __DONTUSE__
for ii in $package_list ; do
eval with_${ii}=__DONTUSE__
done
# ------------------------------------------------------------------------
# Work out default settings
# ------------------------------------------------------------------------
# tools to turn on by default:
with_binutils=__SYSTEM__
with_gcc=__SYSTEM__
with_make=__SYSTEM__
# libs to turn on by default, the math and mpi libraries are chosen by there respective modes:
with_fftw=__INSTALL__
with_libint=__INSTALL__
with_libxsmm=__INSTALL__
with_libxc=__INSTALL__
with_scalapack=__INSTALL__
# default math library settings, FAST_MATH_MODE picks the math library
# to use, and with_* defines the default method of installation if it
# is picked. For non-CRAY systems defaults to mkl if $MKLROOT is
# avaliable, otherwise defaults to openblas
if [ "$MKLROOT" ] ; then
export FAST_MATH_MODE=mkl
else
export FAST_MATH_MODE=openblas
fi
with_acml=__SYSTEM__
with_mkl=__SYSTEM__
with_openblas=__INSTALL__
with_reflapack=__INSTALL__
# sirius is activated by default
with_sirius="__INSTALL__"
with_gsl="__INSTALL__"
with_spglib="__INSTALL__"
with_hdf5="__INSTALL__"
with_json_fortran="__INSTALL__"
with_elpa="__INSTALL__"
# for MPI, we try to detect system MPI variant
with_openmpi=__SYSTEM__
with_mpich=__SYSTEM__
if (command -v mpirun >&- 2>&-) ; then
# check if we are dealing with openmpi or mpich
if (mpirun --version 2>&1 | grep -s -q "HYDRA") ; then
echo "MPI is detected and it appears to be MPICH"
export MPI_MODE=mpich
elif (mpirun --version 2>&1 | grep -s -q "Open MPI") ; then
echo "MPI is detected and it appears to be OpenMPI"
export MPI_MODE=openmpi
else
# default to mpich
export MPI_MODE=mpich
fi
else
report_warning $LINENO "No MPI installation detected on your system. Ignore this message if you are using Cray Linux Environment"
MPI_MODE=no
fi
# number of processors to use
export NPROCS=$(get_nprocs)
# default enable options
enable_tsan=__FALSE__
enable_gcc_master=__FALSE__
enable_libxsmm_master=__FALSE__
enable_omp=__TRUE__
if (command -v nvcc >&- 2>&-) ; then
echo "nvcc found, enabling CUDA by default"
enable_cuda=__TRUE__
export GPUVER=no
else
echo "nvcc not found, disabling CUDA by default"
enable_cuda=__FALSE__
export GPUVER=no
fi
# defaults for CRAY Linux Environment
if [ "$CRAY_LD_LIBRARY_PATH" ] ; then
enable_cray=__TRUE__
export FAST_MATH_MODE=cray
# Default MPI used by CLE is assumed to be MPICH, in any case
# don't use the installers for the MPI libraries
with_mpich="__DONTUSE__"
with_openmpi="__DONTUSE__"
export MPI_MODE=mpich
# set default value for some installers appropriate for CLE
with_gcc="__DONTUSE__"
with_fftw="__SYSTEM__"
with_scalapack="__DONTUSE__"
else
enable_cray=__FALSE__
fi
# ------------------------------------------------------------------------
# parse user options
# ------------------------------------------------------------------------
while [ $# -ge 1 ] ; do
case $1 in
-j)
shift
export NPROCS=$1
;;
--no-check-certificate)
export DOWNLOADER_FLAGS="-n"
;;
--install-all)
# set all package to __INSTALL__ status
for ii in $package_list ; do
eval with_${ii}=__INSTALL__
done
# default mpi-mode to MPICH
MPI_MODE=mpich
;;
--mpi-mode=*)
user_input="${1#*=}"
case "$user_input" in
mpich)
export MPI_MODE=mpich
;;
openmpi)
export MPI_MODE=openmpi
;;
no)
export MPI_MODE=no
;;
*)
report_error ${LINENO} \
"--mpi-mode currently only supports openmpi, mpich and no as options"
exit 1
;;
esac
;;
--math-mode=*)
user_input="${1#*=}"
case "$user_input" in
cray)
export FAST_MATH_MODE=cray
;;
mkl)
export FAST_MATH_MODE=mkl
;;
acml)
export FAST_MATH_MODE=acml
;;
openblas)
export FAST_MATH_MODE=openblas
;;
reflapack)
export FAST_MATH_MODE=reflapack
;;
*)
report_error ${LINENO} \
"--math-mode currently only supports mkl, acml, openblas and reflapack as options"
esac
;;
--gpu-ver=*)
user_input="${1#*=}"
case "$user_input" in
K20X)
export GPUVER=K20X
;;
K40)
export GPUVER=K40
;;
K80)
export GPUVER=K80
;;
P100)
export GPUVER=P100
;;
no)
export GPUVER=no
;;
*)
export GPUVER=no
report_error ${LINENO} \
"--gpu-ver currently only supports K20X, K40, K80, P100 and no as options"
exit 1
esac
;;
--enable-tsan*)
enable_tsan=$(read_enable $1)
if [ $enable_tsan = "__INVALID__" ] ; then
report_error "invalid value for --enable-tsan, please use yes or no"
exit 1
fi
;;
--enable-gcc-master*)
enable_gcc_master=$(read_enable $1)
if [ $enable_gcc_master = "__INVALID__" ] ; then
report_error "invalid value for --enable-gcc-master, please use yes or no"
exit 1
fi
;;
--enable-libxsmm-master*)
enable_libxsmm_master=$(read_enable $1)
if [ $enable_libxsmm_master = "__INVALID__" ] ; then
report_error "invalid value for --enable-libxsmm-master, please use yes or no"
exit 1
fi
;;
--enable-omp*)
enable_omp=$(read_enable $1)
if [ $enable_omp = "__INVALID__" ] ; then
report_error "invalid value for --enable-omp, please use yes or no"
exit 1
fi
;;
--enable-cuda*)
enable_cuda=$(read_enable $1)
if [ $enable_cuda = "__INVALID__" ] ; then
report_error "invalid value for --enable-cuda, please use yes or no"
exit 1
fi
;;
--enable-cray*)
enable_cray=$(read_enable $1)
if [ $enable_cray = "__INVALID__" ] ; then
report_error "invalid value for --enable-cray, please use yes or no"
exit 1
fi
;;
--with-gcc*)
with_gcc=$(read_with $1)
;;
--with-binutils*)
with_binutils=$(read_with $1)
;;
--with-make*)
with_make=$(read_with $1)
;;
--with-cmake*)
with_cmake=$(read_with $1)
;;
--with-lcov*)
with_lcov=$(read_with $1)
;;
--with-valgrind*)
with_valgrind=$(read_with $1)
;;
--with-mpich*)
with_mpich=$(read_with $1)
if [ $with_mpich != __DONTUSE__ ] ; then
export MPI_MODE=mpich
fi
;;
--with-openmpi*)
with_openmpi=$(read_with $1)
if [ $with_openmpi != __DONTUSE__ ] ; then
export MPI_MODE=openmpi
fi
;;
--with-libint*)
with_libint=$(read_with $1)
;;
--with-libxc*)
with_libxc=$(read_with $1)
;;
--with-fftw*)
with_fftw=$(read_with $1)
;;
--with-reflapack*)
with_reflapack=$(read_with $1)
;;
--with-mkl*)
with_mkl=$(read_with $1)
if [ $with_mkl != __DONTUSE__ ] ; then
export FAST_MATH_MODE=mkl
fi
;;
--with-acml*)
with_acml=$(read_with $1)
if [ $with_acml != __DONTUSE__ ] ; then
export FAST_MATH_MODE=acml
fi
;;
--with-openblas*)
with_openblas=$(read_with $1)
if [ $with_openblas != __DONTUSE__ ] ; then
export FAST_MATH_MODE=openblas
fi
;;
--with-scalapack*)
with_scalapack=$(read_with $1)
;;
--with-libsmm*)
with_libsmm=$(read_with $1)
;;
--with-libxsmm*)
with_libxsmm=$(read_with $1)
;;
--with-elpa*)
with_elpa=$(read_with $1)
;;
--with-ptscotch*)
with_ptscotch=$(read_with $1)
;;
--with-parmetis*)
with_parmetis=$(read_with $1)
;;
--with-metis*)
with_metis=$(read_with $1)
;;
--with-superlu*)
with_superlu=$(read_with $1)
;;
--with-pexsi*)
with_pexsi=$(read_with $1)
;;
--with-quip*)
with_quip=$(read_with $1)
;;
--with-sirius*)
with_sirius=$(read_with $1)
;;
--with-gsl*)
with_gsl=$(read_with $1)
;;
--with-spglib*)
with_spglib=$(read_with $1)
;;
--with-hdf5*)
with_hdf5=$(read_with $1)
;;
--with-json*)
with_json_fortran=$(read_with $1)
;;
--help*)
show_help
exit 0
;;
-h*)
show_help
exit 0
;;
*)
report_error "Unknown flag: $1"
exit 1
;;
esac
shift
done
# consolidate settings after user input
export ENABLE_TSAN=$enable_tsan
export ENABLE_OMP=$enable_omp
export ENABLE_CUDA=$enable_cuda
export ENABLE_CRAY=$enable_cray
[ "$enable_gcc_master" = "__TRUE__" ] && export gcc_ver=master
[ "$enable_libxsmm_master" = "__TRUE__" ] && export libxsmm_ver=master
[ "$with_valgrind" != "__DONTUSE__" ] && export ENABLE_VALGRIND="__TRUE__"
[ "$with_lcov" != "__DONTUSE__" ] && export ENABLE_COVERAGE="__TRUE__"
# ------------------------------------------------------------------------
# Check and solve known conflicts before installations proceed
# ------------------------------------------------------------------------
# GCC thread sanitizer conflicts
if [ $ENABLE_TSAN = "__TRUE__" ] ; then
if [ "$with_openblas" != "__DONTUSE__" ] ; then
echo "TSAN is enabled, cannot use openblas, we will use reflapack instead"
[ "$with_reflapack" = "__DONTUSE__" ] && with_reflapack="__INSTALL__"
export FAST_MATH_MODE=reflapack
fi
echo "TSAN is enabled, canoot use libsmm"
with_libsmm="__DONTUSE__"
fi
# valgrind conflicts
if [ "$ENABLE_VALGRIND" = "__TRUE__" ] ; then
if [ "$with_reflapack" = "__DONTUSE__" ] ; then
echo "reflapack is automatically installed when valgrind is enabled"
with_reflapack="__INSTALL__"
fi
fi
# mpi library conflicts
if [ $MPI_MODE = no ] ; then
if [ "$with_scalapack" != "__DONTUSE__" ] ; then
echo "Not using MPI, so scalapack is disabled."
with_scalapack="__DONTUSE__"
fi
if [ "$with_elpa" != "__DONTUSE__" ] ; then
echo "Not using MPI, so ELPA is disabled."
with_elpa="__DONTUSE__"
fi
if [ "$with_pexi" != "__DONTUSE__" ] ; then
echo "Not using MPI, so PEXSI is disabled."
with_pexsi="__DONTUSE__"
fi
if [ "$with_sirius" != "__DONTUSE__" ] ; then
echo "Not using MPI, so sirius is disabled"
with_sirius="__DONTUSE__"
fi
else
# if gcc is installed, then mpi needs to be installed too
if [ "$with_gcc" = "__INSTALL__" ] ; then
echo "You have chosen to install GCC, therefore MPI libraries will have to be installed too"
with_openmpi="__INSTALL__"
with_mpich="__INSTALL__"
fi
fi
# If CUDA is enabled, make sure the GPU version has been defined
if [ $ENABLE_CUDA = __TRUE__ ] ; then
if [ "$GPUVER" = no ] ; then
report_error "CUDA enabled, please choose GPU architecture to compile for with --gpu-ver"
exit 1
fi
fi
# PESXI and its dependencies
if [ "$with_pexsi" = "__DONTUSE__" ] ; then
if [ "$with_ptscotch" != "__DONTUSE__" ] ; then
echo "Not using PEXSI, so PT-Scotch is disabled."
with_ptscotch="__DONTUSE__"
fi
if [ "$with_parmetis" != "__DONTUSE__" ] ; then
echo "Not using PEXSI, so ParMETIS is disabled."
with_parmetis="__DONTUSE__"
fi
if [ "$with_metis" != "__DONTUSE__" ] ; then
echo "Not using PEXSI, so METIS is disabled."
with_metis="__DONTUSE__"
fi
if [ "$with_superlu" != "__DONTUSE__" ] ; then
echo "Not using PEXSI, so SuperLU-DIST is disabled."
with_superlu="__DONTUSE__"
fi
elif [ "$with_pexsi" = "__INSTALL__" ] ; then
[ "$with_ptscotch" = "__DONTUSE__" ] && with_ptscotch="__INSTALL__"
[ "$with_parmetis" = "__DONTUSE__" ] && with_parmetis="__INSTALL__"
[ "$with_superlu" = "__DONTUSE__" ] && with_superlu="__INSTALL__"
else
if [ "$with_ptscotch" = "__DONTUSE__" ] ; then
report_error "For PEXSI to work you need a working PT-Scotch library use --with-ptscotch option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_parmetis" = "__DONTUSE__" ] ; then
report_error "For PEXSI to work you need a working PARMETIS library use --with-parmetis option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_metis" = "__DONTUSE__" ] ; then
report_error "For PEXSI to work you need a working METIS library use --with-metis option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_superlu" = "__DONTUSE__" ] ; then
report_error "For PEXSI to work you need a working SuperLU-DIST library use --with-superlu option to specify if you wish to install the library or specify its location."
exit 1
fi
fi
# ParMETIS requires cmake, it also installs METIS if it is chosen
if [ "$with_parmetis" = "__INSTALL__" ] ; then
[ "$with_cmake" = "__DONTUSE__" ] && with_cmake="__INSTALL__"
with_metis="__INSTALL__"
fi
# spg library requires cmake.
if [ "$with_spglib" = "__INSTALL__" ] ; then
[ "$with_cmake" = "__DONTUSE__" ] && with_cmake="__INSTALL__"
fi
# json-fortran requires cmake.
if [ "$with_json_fortran" = "__INSTALL__" ] ; then
[ "$with_cmake" = "__DONTUSE__" ] && with_cmake="__INSTALL__"
fi
# SIRIUS dependencies. Remove the gsl library from the dependencies if SIRIUS is not activated
if [ "$with_sirius" = "__INSTALL__" ] ; then
if [ "$with_gsl" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working gsl library use --with-gsl option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_elpa" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working ELPA library use --with-elpa option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_libxc" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working libxc library use --with-libxc option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_scalpack" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working scalapack library use --with-scalapack option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_fftw" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working fftw library use --with-fftw option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_spglib" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working spglib library use --with-spglib option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_hdf5" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working hdf5 library use --with-hdf5 option to specify if you wish to install the library or specify its location."
exit 1
fi
if [ "$with_json_fortran" = "__DONTUSE__" ] ; then
report_error "For SIRIUS to work you need a working json-fortran library use --with-json option to specify if you wish to install it or specify its location."
exit 1
fi
fi
# ------------------------------------------------------------------------
# Preliminaries
# ------------------------------------------------------------------------
mkdir -p "$INSTALLDIR"
# variables used for generating cp2k ARCH file
export CP_DFLAGS=''
export CP_LIBS=''
export CP_CFLAGS='IF_OMP(-fopenmp|)'
export CP_LDFLAGS="-Wl,--enable-new-dtags"
# ------------------------------------------------------------------------
# Start writing setup file
# ------------------------------------------------------------------------
cat <<EOF > "$SETUPFILE"
#!/bin/bash
source "${SCRIPTDIR}/tool_kit.sh"
export CP2K_TOOLCHAIN_OPTIONS="${TOOLCHAIN_OPTIONS}"
EOF
# ------------------------------------------------------------------------
# Special settings for CRAY Linux Environment (CLE)
# ------------------------------------------------------------------------
if [ "$ENABLE_CRAY" = "__TRUE__" ] ; then
echo "------------------------------------------------------------------------"
echo "CRAY Linux Environment (CLE) is detected"
echo "------------------------------------------------------------------------"
# add cray paths to system search path
export LIB_PATHS="CRAY_LD_LIBRARY_PATH ${LIB_PATHS}"
# set compilers to CLE wrappers
check_command cc
check_command ftn
check_command CC
export CC=cc
export FC=ftn
export F77=ftn
export F90=ftn
export CXX=CC
export MPICC=cc
export MPIFC=ftn
export MPIF77=ftn
export MPIF90=ftn
export MPICXX=CC
# CRAY libsci should contains core math libraries, scalapack
# doesn't need LDFLAGS or CFLAGS, nor do the one need to
# explicitly link the math and scalapack libraries, as all is
# taken care of by the cray compiler wrappers.
if [ "$with_scalapack" = "__DONTUSE__" ] ; then
export CP_DFLAGS="${CP_DFLAGS} IF_MPI(-D__SCALAPACK|)"
fi
case $MPI_MODE in
mpich)
if [ "$MPICH_DIR" ] ; then
cray_mpich_include_path="$MPICH_DIR/include"
cray_mpich_lib_path="$MPICH_DIR/lib"
export INCLUDE_PATHS="$INCLUDE_PATHS cray_mpich_include_path"
export LIB_PATHS="$LIB_PATHS cray_mpich_lib_path"
fi
if [ "$with_mpich" = "__DONTUSE__" ] ; then
add_include_from_paths MPI_CFLAGS "mpi.h" $INCLUDE_PATHS
add_include_from_paths MPI_LDFLAGS "libmpi.*" $LIB_PATHS
export MPI_CFLAGS
export MPI_LDFLAGS
export MPI_LIBS=" "
export CP_DFLAGS="${CP_DFLAGS} IF_MPI(-D__parallel -D__MPI_VERSION=3|)"
fi
;;
openmpi)
if [ "$with_openmpi" = "__DONTUSE__" ] ; then
add_include_from_paths MPI_CFLAGS "mpi.h" $INCLUDE_PATHS
add_include_from_paths MPI_LDFLAGS "libmpi.*" $LIB_PATHS
export MPI_CFLAGS
export MPI_LDFLAGS
export MPI_LIBS="-lmpi -lmpi_cxx"
export CP_DFLAGS="${CP_DFLAGS} IF_MPI(-D__parallel -D__MPI_VERSION=3|)"
fi
;;
esac
check_lib -lz
check_lib -ldl
export CRAY_EXTRA_LIBS="-lz -ldl"
# the space is intentional, so that the variable is non-empty and
# can pass require_env checks
export SCALAPACK_LDFLAGS=" "
export SCALAPACK_LIBS=" "
fi
# ------------------------------------------------------------------------
# Installing tools required for building CP2K and associated libraries
# ------------------------------------------------------------------------
echo "Compiling with $NPROCS processes."
# set environment for compiling compilers and tools required for CP2K
# and libraries it depends on
export CFLAGS=${CFLAGS:-"-O2 -g -Wno-error"}
export FFLAGS=${FFLAGS:-"-O2 -g -Wno-error"}
export FCLAGS=${FCLAGS:-"-O2 -g -Wno-error"}
export F90FLAGS=${F90FLAGS:-"-O2 -g -Wno-error"}
export F77FLAGS=${F77FLAGS:-"-O2 -g -Wno-error"}
export CXXFLAGS=${CXXFLAGS:-"-O2 -g -Wno-error"}
# Select the correct compute number based on the GPU architecture
case $GPUVER in
K20X)
export ARCH_NUM=35
;;
K40)
export ARCH_NUM=35
;;
K80)
export ARCH_NUM=37
;;
P100)
export ARCH_NUM=60
;;
no)
export ARCH_NUM=no
;;
*)
report_error ${LINENO} \
"--gpu-ver currently only supports K20X, K40, K80, P100 as options"
esac
# need to setup tools after all of the tools are built. We should use
# consistent pairs of gcc and binutils etc for make. So we use system
# tool sets to compile the tool sets used to compile CP2K
for ii in $tool_list ; do
time_start=`date +%s`
install_mode="$(eval echo \${with_${ii}})"
"${SCRIPTDIR}"/install_${ii}.sh "$install_mode"
time_stop=`date +%s`
printf "Step took %0.2f seconds.\n" $((time_stop-time_start))
done
for ii in $tool_list ; do
load "${BUILDDIR}/setup_${ii}"
done
# ------------------------------------------------------------------------
# Install or compile packages using newly installed tools
# ------------------------------------------------------------------------
# setup compiler flags, leading to nice stack traces on crashes but
# still optimised
CFLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
FFLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
F77FLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
F90FLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
FCFLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
CXXFLAGS="-O2 -ftree-vectorize -g -fno-omit-frame-pointer -march=native $TSANFLAGS"
export CFLAGS=$(allowed_gcc_flags $CFLAGS)
export FFLAGS=$(allowed_gfortran_flags $FFLAGS)
export F77FLAGS=$(allowed_gfortran_flags $F77FLAGS)
export F90FLAGS=$(allowed_gfortran_flags $F90FLAGS)
export FCFLAGS=$(allowed_gfortran_flags $FCFLAGS)
export CXXFLAGS=$(allowed_gxx_flags $CXXFLAGS)
export LDFLAGS="$TSANFLAGS"
# get system arch information using OpenBLAS prebuild
"${SCRIPTDIR}"/get_openblas_arch.sh; load "${BUILDDIR}/openblas_arch"
# MPI libraries
time_start=`date +%s`
case "$MPI_MODE" in
mpich)
"${SCRIPTDIR}"/install_mpich.sh "${with_mpich}"; load "${BUILDDIR}/setup_mpich"
;;
openmpi)
"${SCRIPTDIR}"/install_openmpi.sh "${with_openmpi}"; load "${BUILDDIR}/setup_openmpi"
;;
esac
time_stop=`date +%s`
printf "Step took %0.2f seconds.\n" $((time_stop-time_start))
# math core libraries, need to use reflapack for valgrind builds, as
# many fast libraries are not necessarily valgrind clean
export REF_MATH_CFLAGS=''
export REF_MATH_LDFLAGS=''
export REF_MATH_LIBS=''
export FAST_MATH_CFLAGS=''
export FAST_MATH_LDFLAGS=''
export FAST_MATH_LIBS=''
time_start=`date +%s`
"${SCRIPTDIR}"/install_reflapack.sh "${with_reflapack}"; load "${BUILDDIR}/setup_reflapack"
time_stop=`date +%s`
printf "Step took %0.2f seconds.\n" $((time_stop-time_start))
time_start=`date +%s`
case "$FAST_MATH_MODE" in
mkl)
"${SCRIPTDIR}"/install_mkl.sh "${with_mkl}"; load "${BUILDDIR}/setup_mkl"
;;
acml)
"${SCRIPTDIR}"/install_acml.sh "${with_acml}"; load "${BUILDDIR}/setup_acml"
;;
openblas)
"${SCRIPTDIR}"/install_openblas.sh "${with_openblas}"; load "${BUILDDIR}/setup_openblas"
;;
cray)
# note the space is intentional so that the variable is
# non-empty and can pass require_env checks
export FAST_MATH_LDFLAGS="${FAST_MATH_LDFLAGS} "
export FAST_MATH_LIBS="${FAST_MATH_LIBS} ${CRAY_EXTRA_LIBS}"
;;
esac
time_stop=`date +%s`
printf "Step took %0.2f seconds.\n" $((time_stop-time_start))
if [ $ENABLE_VALGRIND = "__TRUE__" ] ; then
export MATH_CFLAGS="${REF_MATH_CFLAGS}"
export MATH_LDFLAGS="${REF_MATH_LDFLAGS}"
export MATH_LIBS="${REF_MATH_LIBS}"
else
export MATH_CFLAGS="${FAST_MATH_CFLAGS}"
export MATH_LDFLAGS="${FAST_MATH_LDFLAGS}"
export MATH_LIBS="${FAST_MATH_LIBS}"
fi