forked from STEllAR-GROUP/hpx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
1794 lines (1552 loc) · 66.6 KB
/
CMakeLists.txt
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
# Copyright (c) 2007-2017 Hartmut Kaiser
# Copyright (c) 2011-2014 Thomas Heller
# Copyright (c) 2007-2008 Chirag Dekate
# Copyright (c) 2011 Bryce Lelbach
# Copyright (c) 2011 Vinay C Amatya
# Copyright (c) 2013 Jeroen Habraken
# Copyright (c) 2014-2016 Andreas Schaefer
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
# We require at least CMake V2.8.10
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
# explicitly set certain policies
cmake_policy(VERSION 2.8.12)
macro(hpx_set_cmake_policy policy value)
if(POLICY ${policy})
cmake_policy(SET ${policy} ${value})
endif()
endmacro()
hpx_set_cmake_policy(CMP0042 NEW)
hpx_set_cmake_policy(CMP0054 OLD)
hpx_set_cmake_policy(CMP0060 NEW)
# Overrides must go before the project() statement, otherwise they are ignored.
################################################################################
# C++ overrides
################################################################################
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/HPX_CXXOverrides.cmake")
################################################################################
# Fortran overrides
################################################################################
set(CMAKE_USER_MAKE_RULES_OVERRIDE_Fortran
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/HPX_FortranOverrides.cmake")
################################################################################
# Build type (needs to be handled before project command below)
################################################################################
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Configuration type (one of Debug, RelWithDebInfo, Release, MinSizeRel)")
endif()
################################################################################
# project metadata
################################################################################
project(HPX CXX C)
set(HPX_MAJOR_VERSION 1)
set(HPX_MINOR_VERSION 0)
set(HPX_PATCH_LEVEL 0)
set(HPX_VERSION "${HPX_MAJOR_VERSION}.${HPX_MINOR_VERSION}.${HPX_PATCH_LEVEL}")
set(HPX_LIBRARY_VERSION "${HPX_VERSION}")
set(HPX_SOVERSION ${HPX_MAJOR_VERSION})
set(HPX_PACKAGE_NAME HPX)
if(MSVC)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif()
################################################################################
# CMake configuration
################################################################################
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")
# We safe the passed compiler flag to a special variable. This is needed for our
# build system unit tests. Some flags might influence the created symbols (
# _GLIBCXX_DEBUG i look at you)
set(CMAKE_CXX_FLAGS_SAFE ${CMAKE_CXX_FLAGS})
include(CheckCXXCompilerFlag)
include(CMakeDependentOption)
# include additional macro definitions
include(HPX_Utils)
include(HPX_ExportTargets)
include(HPX_Libraries)
include(HPX_LibraryDir)
include(HPX_AddConfigTest)
include(HPX_AddDefinitions)
hpx_force_out_of_tree_build("This project requires an out-of-source-tree build. See README.rst. Clean your CMake cache and CMakeFiles if this message persists.")
if(NOT HPX_CMAKE_LOGLEVEL)
set(HPX_CMAKE_LOGLEVEL "WARN")
endif()
################################################################################
# Fortran compiler detection
#
hpx_option(HPX_WITH_FORTRAN
BOOL
"Enable or disable the compilation of Fortran examples using HPX"
OFF ADVANCED)
if (HPX_WITH_FORTRAN)
include(HPX_FortranCompiler)
endif()
################################################################################
################################################################################
# Setup platform for which HPX should be compiled for.
#
include(HPX_SetPlatform)
if("${HPX_PLATFORM_UC}" STREQUAL "ANDROID")
unset(HPX_LIBRARY_VERSION)
unset(HPX_SOVERSION)
endif()
################################################################################
################################################################################
# Set our build options cache variables which are customizable by users
#
## Generic build options
set(DEFAULT_MALLOC "system")
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
set(DEFAULT_MALLOC "tcmalloc")
# set(DEFAULT_MALLOC "jemalloc")
endif()
hpx_option(HPX_WITH_MALLOC
STRING
"Define which allocator should be linked in. Options are: system, tcmalloc, jemalloc, tbbmalloc, and custom (default is: tcmalloc)"
${DEFAULT_MALLOC} ADVANCED)
hpx_option(HPX_WITH_HWLOC
BOOL
"Use Hwloc for hardware topology information and thread pinning. If disabled, performance might be reduced."
ON ADVANCED)
hpx_option(HPX_WITH_SECURITY BOOL "Enable security support via libsodium." OFF)
# Logging configuration
hpx_option(HPX_WITH_LOGGING BOOL
"Build HPX with logging enabled (default: ON)."
ON ADVANCED)
if(HPX_WITH_LOGGING)
hpx_add_config_define(HPX_HAVE_LOGGING)
endif()
## Compiler related build options
hpx_option(HPX_WITH_GCC_VERSION_CHECK BOOL
"Don't ignore version reported by gcc (default: ON)"
ON ADVANCED)
hpx_option(HPX_WITH_DEFAULT_TARGETS BOOL
"Associate the core HPX library with the default build target (default: ON)."
ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_COMPILER_WARNINGS BOOL
"Enable compiler warnings (default: ON)"
ON ADVANCED)
hpx_option(HPX_WITH_DOCUMENTATION BOOL
"Build the HPX documentation (default OFF)."
OFF CATEGORY "Build Targets")
hpx_option(HPX_WITH_DOCUMENTATION_SINGLEPAGE BOOL
"The HPX documentation should be built as a single page HTML (default OFF)."
OFF CATEGORY "Build Targets")
if(MSVC)
hpx_option(HPX_WITH_PSEUDO_DEPENDENCIES BOOL
"Force creating pseudo targets and pseudo dependencies (default OFF)."
OFF CATEGORY "Build Targets")
else()
hpx_option(HPX_WITH_PSEUDO_DEPENDENCIES BOOL
"Force creating pseudo targets and pseudo dependencies (default ON)."
ON CATEGORY "Build Targets")
endif()
################################################################################
# Some platforms do not support dynamic linking. Enable this to link all
# libraries statically. This also changes some of the internals of HPX related
# to how components are loaded.
################################################################################
hpx_option(HPX_WITH_STATIC_LINKING BOOL
"Compile HPX statically linked libraries (Default: OFF)" OFF ADVANCED)
if(HPX_WITH_STATIC_LINKING)
hpx_add_config_define(HPX_HAVE_STATIC_LINKING)
set(hpx_library_link_mode STATIC)
set(CMAKE_SHARED_LIBS OFF)
set(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
hpx_option(HPX_WITH_STATIC_EXE_LINKING BOOL
"Compile HPX statically linked executables (Default: OFF)" OFF ADVANCED)
if(HPX_WITH_STATIC_EXE_LINKING)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static")
endif()
endif()
else()
set(hpx_library_link_mode SHARED)
endif()
################################################################################
hpx_option(HPX_WITH_EXAMPLES BOOL "Build the HPX examples (default ON)" ON CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS BOOL "Build the HPX tests (default ON)" ON CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS_BENCHMARKS BOOL "Build HPX benchmark tests (default: ON)" ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS_REGRESSIONS BOOL "Build HPX regression tests (default: ON)" ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS_UNIT BOOL "Build HPX unit tests (default: ON)" ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS_HEADERS BOOL "Build HPX header tests (default: OFF)" OFF ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_TESTS_EXTERNAL_BUILD BOOL "Build external cmake build tests (default: ON)" ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_TOOLS BOOL "Build HPX tools (default: OFF)" OFF ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_RUNTIME BOOL "Build HPX runtime (default: ON)" ON ADVANCED CATEGORY "Build Targets")
hpx_option(HPX_WITH_COMPILE_ONLY_TESTS BOOL
"Create build system support for compile time only HPX tests (default ON)"
ON CATEGORY "Build Targets")
# Enable IO-counters on linux systems only
set(HPX_WITH_IO_COUNTERS_DEFAULT OFF)
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
set(HPX_WITH_IO_COUNTERS_DEFAULT ON)
endif()
hpx_option(HPX_WITH_IO_COUNTERS BOOL
"Build HPX runtime (default: ${HPX_WITH_IO_COUNTERS_DEFAULT})"
${HPX_WITH_IO_COUNTERS_DEFAULT} ADVANCED CATEGORY "Build Targets")
if(HPX_WITH_IO_COUNTERS)
hpx_add_config_define(HPX_HAVE_IO_COUNTERS)
endif()
set(HPX_FULL_RPATH_DEFAULT ON)
if(APPLE OR WIN32)
set(HPX_FULL_RPATH_DEFAULT OFF)
endif()
hpx_option(HPX_WITH_FULL_RPATH BOOL
"Build and link HPX libraries and executables with full RPATHs (default: ON)"
OFF ADVANCED)
################################################################################
# HPX Compute configuration
################################################################################
hpx_option(HPX_WITH_CUDA BOOL
"Enable CUDA support (default: OFF)" OFF ADVANCED)
hpx_option(HPX_WITH_CUDA_CLANG BOOL
"Use clang to compile CUDA code (default: OFF)" OFF ADVANCED)
if(HPX_WITH_CUDA)
find_package(CUDA REQUIRED)
set(HPX_WITH_COMPUTE On)
hpx_add_config_define(HPX_HAVE_CUDA)
hpx_add_config_define(HPX_HAVE_COMPUTE)
endif()
if(HPX_WITH_CUDA_CLANG AND NOT (CMAKE_CXX_COMPILER_ID STREQUAL "Clang"))
hpx_error("To use Cuda Clang, please select Clang as your default C++ compiler")
endif()
hpx_option(HPX_WITH_HCC BOOL
"Enable hcc support (default: OFF)" OFF ADVANCED)
hpx_option(HPX_WITH_SYCL BOOL
"Enable sycl support (default: OFF)" OFF ADVANCED)
################################################################################
# HPX datapar configuration
################################################################################
hpx_option(HPX_WITH_DATAPAR_LIBFLATARRAY BOOL
"Enable data parallel algorithm support using the external LibFlatArray (default: OFF)" OFF ADVANCED)
hpx_option(HPX_WITH_DATAPAR_VC BOOL
"Enable data parallel algorithm support using the external Vc library (default: OFF)" OFF ADVANCED)
hpx_option(HPX_WITH_DATAPAR_BOOST_SIMD BOOL
"Enable data parallel algorithm support using the external Boost.SIMD library (default: OFF)" OFF ADVANCED)
if((HPX_WITH_DATAPAR_VC AND HPX_WITH_DATAPAR_BOOST_SIMD) OR
(HPX_WITH_DATAPAR_VC AND HPX_WITH_DATAPAR_BOOST_LIBFLATARRAY) OR
(HPX_WITH_DATAPAR_BOOST_SIMD AND HPX_WITH_DATAPAR_BOOST_LIBFLATARRAY))
hpx_error("Please select only one of the supported external vectorization libraries (HPX_WITH_DATAPAR_VC, HPX_WITH_DATAPAR_BOOST_SIMD, OR HPX_WITH_DATAPAR_BOOST_LIBFLATARRAY)")
endif()
if(HPX_WITH_DATAPAR_LIBFLATARRAY)
include(HPX_SetupLibFlatArray)
endif()
if(HPX_WITH_DATAPAR_VC)
include(HPX_SetupVc)
endif()
if(HPX_WITH_DATAPAR_BOOST_SIMD)
include(HPX_SetupBoostSIMD)
endif()
if((NOT HPX_WITH_DATAPAR_VC) AND (NOT HPX_WITH_DATAPAR_BOOST_SIMD) AND (NOT HPX_WITH_DATAPAR_LIBFLATARRAY))
hpx_info("No vectorization library configured")
else()
set(HPX_WITH_DATAPAR ON)
endif()
################################################################################
# Native TLS configuration
################################################################################
set(HPX_WITH_NATIVE_TLS_DEFAULT ON)
if(APPLE)
set(HPX_WITH_NATIVE_TLS_DEFAULT OFF)
endif()
hpx_option(HPX_WITH_NATIVE_TLS BOOL
"Use native TLS support if available (default: ${HPX_WITH_NATIVE_TLS_DEFAULT})"
${HPX_WITH_NATIVE_TLS_DEFAULT} ADVANCED)
if(HPX_WITH_NATIVE_TLS)
hpx_info("Native TLS is enabled.")
hpx_add_config_define(HPX_HAVE_NATIVE_TLS)
else()
hpx_info("Native TLS is disabled.")
endif()
################################################################################
# Utility configuration
################################################################################
set(HPX_HIDDEN_VISIBILITY_DEFAULT ON)
if(CMAKE_COMPILER_IS_GNUCXX)
if("${HPX_PLATFORM_UC}" STREQUAL "ANDROID")
set(HPX_HIDDEN_VISIBILITY_DEFAULT OFF)
endif()
endif()
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(HPX_HIDDEN_VISIBILITY_DEFAULT OFF)
endif()
if(APPLE)
set(HPX_HIDDEN_VISIBILITY_DEFAULT OFF)
endif()
hpx_option(HPX_WITH_HIDDEN_VISIBILITY BOOL
"Use -fvisibility=hidden for builds on platforms which support it (default ${HPX_HIDDEN_VISIBILITY_DEFAULT})"
${HPX_HIDDEN_VISIBILITY_DEFAULT}
ADVANCED)
hpx_option(HPX_WITH_AUTOMATIC_SERIALIZATION_REGISTRATION BOOL
"Use automatic serialization registration for actions and functions. This affects compatibility between HPX applications compiled with different compilers (default ON)"
ON
ADVANCED)
if(HPX_WITH_AUTOMATIC_SERIALIZATION_REGISTRATION)
hpx_add_config_define(HPX_HAVE_AUTOMATIC_SERIALIZATION_REGISTRATION)
endif()
## Thread Manager related build options
set(HPX_MAX_CPU_COUNT_DEFAULT "64")
hpx_option(HPX_WITH_MAX_CPU_COUNT STRING
"HPX applications will not use more that this number of OS-Threads (default: ${HPX_MAX_CPU_COUNT_DEFAULT})"
${HPX_MAX_CPU_COUNT_DEFAULT}
CATEGORY "Thread Manager" ADVANCED)
hpx_add_config_define(HPX_HAVE_MAX_CPU_COUNT ${HPX_WITH_MAX_CPU_COUNT})
hpx_option(HPX_WITH_MORE_THAN_64_THREADS BOOL
"HPX applications will be able to run on more than 64 cores"
(NOT (${HPX_WITH_MAX_CPU_COUNT} LESS 65))
CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_MORE_THAN_64_THREADS)
hpx_add_config_define(HPX_HAVE_MORE_THAN_64_THREADS)
endif()
hpx_option(HPX_WITH_THREAD_STACK_MMAP BOOL
"Use mmap for stack allocation on appropriate platforms"
ON
CATEGORY "Thread Manager" ADVANCED)
hpx_option(HPX_WITH_THREAD_MANAGER_IDLE_BACKOFF BOOL
"HPX scheduler threads are backing off on idle queues (default: ON)"
ON
CATEGORY "Thread Manager" ADVANCED)
hpx_option(HPX_WITH_STACKTRACES BOOL
"Attach backtraces to HPX exceptions (default: ON)"
ON
CATEGORY "Thread Manager" ADVANCED)
hpx_option(HPX_WITH_THREAD_BACKTRACE_ON_SUSPENSION BOOL
"Enable thread stack back trace being captured on suspension (default: OFF)"
OFF
CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_STACKTRACES OR HPX_WITH_THREAD_BACKTRACE_ON_SUSPENSION)
hpx_info("Stack traces are enabled.")
hpx_add_config_define(HPX_HAVE_STACKTRACES)
if(WIN32)
hpx_libraries(dbghelp)
endif()
hpx_option(HPX_WITH_THREAD_BACKTRACE_DEPTH STRING
"Thread stack back trace depth being captured (default: 5)"
"5"
CATEGORY "Thread Manager" ADVANCED)
hpx_add_config_define(HPX_HAVE_THREAD_BACKTRACE_DEPTH
${HPX_WITH_THREAD_BACKTRACE_DEPTH})
endif()
if(HPX_WITH_THREAD_BACKTRACE_ON_SUSPENSION)
hpx_add_config_define(HPX_HAVE_THREAD_BACKTRACE_ON_SUSPENSION)
hpx_option(HPX_WITH_THREAD_FULLBACKTRACE_ON_SUSPENSION BOOL
"Enable thread stack back trace being captured on suspension (default: OFF)"
OFF
CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_FULLBACKTRACE_ON_SUSPENSION)
hpx_add_config_define(HPX_HAVE_THREAD_FULLBAKCTRACE_ON_SUSPENSION)
endif()
endif()
hpx_option(HPX_WITH_THREAD_TARGET_ADDRESS BOOL
"Enable storing target address in thread for NUMA awareness (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_TARGET_ADDRESS)
hpx_add_config_define(HPX_HAVE_THREAD_TARGET_ADDRESS)
endif()
hpx_option(HPX_WITH_THREAD_QUEUE_WAITTIME BOOL
"Enable collecting queue wait times for threads (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_QUEUE_WAITTIME)
hpx_add_config_define(HPX_HAVE_THREAD_QUEUE_WAITTIME)
endif()
hpx_option(HPX_WITH_THREAD_IDLE_RATES BOOL
"Enable measuring the percentage of overhead times spent in the scheduler (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
hpx_option(HPX_WITH_THREAD_CREATION_AND_CLEANUP_RATES BOOL
"Enable measuring thread creation and cleanup times (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_IDLE_RATES)
hpx_add_config_define(HPX_HAVE_THREAD_IDLE_RATES)
if(HPX_WITH_THREAD_CREATION_AND_CLEANUP_RATES)
hpx_add_config_define(HPX_HAVE_THREAD_CREATION_AND_CLEANUP_RATES)
endif()
endif()
hpx_option(HPX_WITH_THREAD_CUMULATIVE_COUNTS BOOL
"Enable keeping track of cumulative thread counts in the schedulers (default: ON)"
ON CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_CUMULATIVE_COUNTS)
hpx_add_config_define(HPX_HAVE_THREAD_CUMULATIVE_COUNTS)
endif()
hpx_option(HPX_WITH_THREAD_STEALING_COUNTS BOOL
"Enable keeping track of counts of thread stealing incidents in the schedulers (default: ON)"
ON CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_STEALING_COUNTS)
hpx_add_config_define(HPX_HAVE_THREAD_STEALING_COUNTS)
endif()
hpx_option(HPX_WITH_THREAD_LOCAL_STORAGE BOOL
"Enable thread local storage for all HPX threads (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_THREAD_LOCAL_STORAGE)
hpx_add_config_define(HPX_HAVE_THREAD_LOCAL_STORAGE)
endif()
hpx_option(HPX_WITH_SCHEDULER_LOCAL_STORAGE BOOL
"Enable scheduler local storage for all HPX schedulers (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
if(HPX_WITH_SCHEDULER_LOCAL_STORAGE)
hpx_add_config_define(HPX_HAVE_SCHEDULER_LOCAL_STORAGE)
endif()
hpx_option(HPX_WITH_SWAP_CONTEXT_EMULATION BOOL
"Emulate SwapContext API for coroutines (default: OFF)"
OFF CATEGORY "Thread Manager" ADVANCED)
## Profiling related build options
hpx_option(HPX_WITH_APEX BOOL
"Enable APEX instrumentation support." OFF CATEGORY "Profiling")
if(HPX_WITH_APEX)
hpx_add_config_define(HPX_HAVE_APEX) # tell HPX that we use APEX
hpx_option(HPX_WITH_APEX_NO_UPDATE BOOL
"Do not update code from remote APEX repository." OFF CATEGORY "Profiling")
endif()
hpx_option(HPX_WITH_PAPI BOOL
"Enable the PAPI based performance counter." OFF CATEGORY "Profiling")
if(HPX_WITH_PAPI)
hpx_add_config_define(HPX_HAVE_PAPI)
endif()
hpx_option(HPX_WITH_GOOGLE_PERFTOOLS BOOL
"Enable Google Perftools instrumentation support." OFF CATEGORY "Profiling")
if(HPX_WITH_GOOGLE_PERFTOOLS)
hpx_add_config_define(HPX_HAVE_GOOGLE_PERFTOOLS)
endif()
hpx_option(HPX_WITH_ITTNOTIFY BOOL
"Enable Amplifier (ITT) instrumentation support." OFF CATEGORY "Profiling")
################################################################################
# Scheduler configuration
################################################################################
hpx_option(HPX_WITH_THREAD_SCHEDULERS STRING
"Which thread schedulers are build. Options are: all, abp-priority, local, static-priority, static, hierarchy, and periodic-priority. For multiple enabled schedulers, separate with a semicolon (default: all)"
"all"
CATEGORY "Thread Manager" ADVANCED)
string(TOUPPER ${HPX_WITH_THREAD_SCHEDULERS} HPX_WITH_THREAD_SCHEDULERS_UC)
foreach(_scheduler ${HPX_WITH_THREAD_SCHEDULERS_UC})
if(_scheduler STREQUAL "ALL")
set(_all On)
set(HPX_WITH_ALL_SCHEDULERS ON CACHE INTERNAL "")
endif()
if(_scheduler STREQUAL "ABP-PRIORITY" OR _all)
hpx_add_config_define(HPX_HAVE_ABP_SCHEDULER)
set(HPX_WITH_ABP_SCHEDULER ON CACHE INTERNAL "")
endif()
if(_scheduler STREQUAL "LOCAL" OR _all)
hpx_add_config_define(HPX_HAVE_LOCAL_SCHEDULER)
set(HPX_WITH_LOCAL_SCHEDULER ON CACHE INTERNAL "")
endif()
if(_scheduler STREQUAL "STATIC-PRIORITY" OR _all)
hpx_add_config_define(HPX_HAVE_STATIC_PRIORITY_SCHEDULER)
set(HPX_WITH_STATIC_PRIORITY_SCHEDULER ON CACHE INTERNAL "")
endif()
if(_scheduler STREQUAL "STATIC" OR _all)
hpx_add_config_define(HPX_HAVE_STATIC_SCHEDULER)
set(HPX_WITH_STATIC_SCHEDULER ON CACHE INTERNAL "")
endif()
# The throttle scheduler is not supported neither on Windows nor on Mac
if(HPX_WITH_APEX AND NOT WIN32 AND NOT APPLE)
if(_scheduler STREQUAL "THROTTLE" OR _all)
hpx_add_config_define(HPX_HAVE_THROTTLE_SCHEDULER)
set(HPX_WITH_THROTTLE_SCHEDULER ON CACHE INTERNAL "")
endif()
endif()
if(_scheduler STREQUAL "HIERARCHY" OR _all)
hpx_add_config_define(HPX_HAVE_HIERARCHY_SCHEDULER)
set(HPX_WITH_HIERARCHY_SCHEDULER ON CACHE INTERNAL "")
endif()
if(_scheduler STREQUAL "PERIODIC-PRIORITY" OR _all)
hpx_add_config_define(HPX_HAVE_PERIODIC_PRIORITY_SCHEDULER)
set(HPX_WITH_PERIODIC_PRIORITY_SCHEDULER ON CACHE INTERNAL "")
endif()
unset(_all)
endforeach()
## AGAS related build options
hpx_option(HPX_WITH_AGAS_DUMP_REFCNT_ENTRIES BOOL
"Enable dumps of the AGAS refcnt tables to logs (default: OFF)"
OFF CATEGORY "AGAS" ADVANCED)
if(HPX_WITH_AGAS_DUMP_REFCNT_ENTRIES)
hpx_add_config_define(HPX_HAVE_AGAS_DUMP_REFCNT_ENTRIES)
endif()
## Parcelport related build options
set(_parcel_profiling_default OFF)
if(HPX_WITH_APEX)
set(_parcel_profiling_default ON)
endif()
hpx_option(HPX_WITH_PARCEL_PROFILING BOOL
"Enable profiling data for parcels"
${_parcel_profiling_default} CATEGORY "Parcelport" ADVANCED)
if(HPX_WITH_PARCEL_PROFILING)
hpx_add_config_define(HPX_HAVE_PARCEL_PROFILING)
endif()
## Parcelport related build options
hpx_option(HPX_WITH_PARCELPORT_VERBS BOOL
"Enable the ibverbs based parcelport. This is currently an experimental feature"
OFF CATEGORY "Parcelport" ADVANCED)
hpx_option(HPX_WITH_PARCELPORT_MPI BOOL
"Enable the MPI based parcelport."
OFF CATEGORY "Parcelport")
hpx_option(HPX_WITH_PARCELPORT_TCP BOOL
"Enable the TCP based parcelport."
ON CATEGORY "Parcelport")
hpx_option(HPX_WITH_PARCELPORT_ACTION_COUNTERS BOOL
"Enable performance counters reporting parcelport statistics on a per-action basis."
OFF CATEGORY "Parcelport")
if(HPX_WITH_PARCELPORT_ACTION_COUNTERS)
hpx_add_config_define(HPX_HAVE_PARCELPORT_ACTION_COUNTERS)
endif()
## mpi parcelport settings
hpx_option(HPX_WITH_PARCELPORT_MPI_ENV STRING
"List of environment variables checked to detect MPI (default: MV2_COMM_WORLD_RANK;PMI_RANK;OMPI_COMM_WORLD_SIZE;ALPS_APP_PE)."
"MV2_COMM_WORLD_RANK;PMI_RANK;OMPI_COMM_WORLD_SIZE;ALPS_APP_PE" CATEGORY "Parcelport" ADVANCED)
hpx_option(HPX_WITH_PARCELPORT_MPI_MULTITHREADED BOOL
"Turn on MPI multithreading support (default: ON)."
ON CATEGORY "Parcelport" ADVANCED)
## External libraries/frameworks used by sme of the examples and benchmarks
hpx_option(HPX_WITH_EXAMPLES_OPENMP BOOL
"Enable examples requiring OpenMP support (default: OFF)." OFF
CATEGORY "Tools" ADVANCED)
if(HPX_WITH_EXAMPLES_OPENMP)
find_package(OpenMP)
if(OPENMP_FOUND)
hpx_add_config_define(HPX_HAVE_EXAMPLES_OPENMP)
else()
set(HPX_WITH_EXAMPLES_OPENMP OFF)
endif()
endif()
hpx_option(HPX_WITH_EXAMPLES_TBB BOOL
"Enable examples requiring TBB support (default: OFF)." OFF
CATEGORY "Tools" ADVANCED)
if(HPX_WITH_EXAMPLES_TBB)
find_package(TBB)
if(TBB_FOUND)
hpx_add_config_define(HPX_HAVE_EXAMPLES_TBB)
else()
set(HPX_WITH_EXAMPLES_TBB OFF)
endif()
endif()
hpx_option(HPX_WITH_EXAMPLES_QTHREADS BOOL
"Enable examples requiring QThreads support (default: OFF)." OFF
CATEGORY "Tools" ADVANCED)
if(HPX_WITH_EXAMPLES_QTHREADS)
find_package(QThreads)
if(QTHREADS_FOUND)
hpx_add_config_define(HPX_HAVE_EXAMPLES_QTHREADS)
else()
set(HPX_WITH_EXAMPLES_QTHREADS OFF)
endif()
endif()
hpx_option(HPX_WITH_EXAMPLES_HDF5 BOOL
"Enable examples requiring HDF5 support (default: OFF)." OFF
CATEGORY "Tools" ADVANCED)
if(HPX_WITH_EXAMPLES_HDF5)
find_package(HDF5 COMPONENTS CXX)
if(HDF5_FOUND)
hpx_add_config_define(HPX_HAVE_EXAMPLES_HDF5)
else()
set(HPX_WITH_EXAMPLES_HDF5 OFF)
endif()
endif()
# Disabling the Qt example on BG/Q as GUIs don't make sense there anyways
if(NOT "${HPX_PLATFORM_UC}" STREQUAL "BLUEGENEQ")
hpx_option(HPX_WITH_EXAMPLES_QT4 BOOL
"Enable examples requiring Qt4 support (default: OFF)." OFF
CATEGORY "Tools" ADVANCED)
if(HPX_WITH_EXAMPLES_QT4)
find_package(Qt4)
if(QT4_FOUND)
hpx_add_config_define(HPX_HAVE_EXAMPLES_QT4)
else()
set(HPX_WITH_EXAMPLES_QT4 OFF)
endif()
endif()
endif()
## Debugging related build options
hpx_option(HPX_WITH_VALGRIND BOOL "Enable Valgrind instrumentation support."
OFF CATEGORY "Debugging")
hpx_option(HPX_WITH_VERIFY_LOCKS BOOL
"Enable lock verification code (default: OFF, implicitly enabled in debug builds)"
OFF
CATEGORY "Debugging" ADVANCED)
hpx_option(HPX_WITH_VERIFY_LOCKS_GLOBALLY BOOL
"Enable global lock verification code (default: OFF, implicitly enabled in debug builds)"
OFF
CATEGORY "Debugging" ADVANCED)
hpx_option(HPX_WITH_VERIFY_LOCKS_BACKTRACE BOOL
"Enable thread stack back trace being captured on lock registration (to be used in combination with HPX_WITH_VERIFY_LOCKS=ON, default: OFF)"
OFF
CATEGORY "Debugging" ADVANCED)
hpx_option(HPX_WITH_THREAD_DEBUG_INFO BOOL
"Enable thread debugging information (default: OFF, implicitly enabled in debug builds)"
OFF
CATEGORY "Debugging" ADVANCED)
hpx_option(HPX_WITH_THREAD_GUARD_PAGE BOOL
"Enable thread guard page (default: ON)"
ON
CATEGORY "Debugging" ADVANCED)
if(HPX_WITH_VERIFY_LOCKS)
hpx_add_config_define(HPX_HAVE_VERIFY_LOCKS)
if(HPX_WITH_VERIFY_LOCKS_BACKTRACE)
hpx_add_config_define(HPX_HAVE_VERIFY_LOCKS_BACKTRACE)
endif()
endif()
if(HPX_WITH_VERIFY_LOCKS_GLOBALLY)
hpx_add_config_define(HPX_HAVE_VERIFY_LOCKS_GLOBALLY)
endif()
# Additional debug support
if(NOT WIN32 AND HPX_WITH_THREAD_GUARD_PAGE)
hpx_add_config_define(HPX_HAVE_THREAD_GUARD_PAGE)
endif()
if(NOT WIN32 AND HPX_WITH_THREAD_STACK_MMAP)
hpx_add_config_define(HPX_HAVE_THREAD_STACK_MMAP)
endif()
if(HPX_WITH_THREAD_MANAGER_IDLE_BACKOFF)
hpx_add_config_define(HPX_HAVE_THREAD_MANAGER_IDLE_BACKOFF)
endif()
hpx_option(HPX_WITH_THREAD_DESCRIPTION_FULL BOOL
"Use function address for thread description (default: OFF)"
OFF
CATEGORY "Debugging" ADVANCED)
# If APEX is defined, the action timers need thread debug info.
if(HPX_WITH_APEX)
hpx_add_config_define(HPX_HAVE_THREAD_DESCRIPTION)
if(HPX_WITH_THREAD_DESCRIPTION_FULL)
hpx_add_config_define(HPX_HAVE_THREAD_DESCRIPTION_FULL)
endif()
endif()
if(HPX_WITH_THREAD_DEBUG_INFO)
hpx_add_config_define(HPX_HAVE_THREAD_PARENT_REFERENCE)
hpx_add_config_define(HPX_HAVE_THREAD_PHASE_INFORMATION)
hpx_add_config_define(HPX_HAVE_THREAD_DESCRIPTION)
hpx_add_config_define(HPX_HAVE_THREAD_DEADLOCK_DETECTION)
if(HPX_WITH_THREAD_DESCRIPTION_FULL)
hpx_add_config_define(HPX_HAVE_THREAD_DESCRIPTION_FULL)
endif()
endif()
# run hpx_main on all localities by default
hpx_option(HPX_WITH_RUN_MAIN_EVERYWHERE BOOL "Run hpx_main by default on all localities (default: OFF)." OFF ADVANCED)
if(HPX_WITH_RUN_MAIN_EVERYWHERE)
hpx_add_config_define(HPX_HAVE_RUN_MAIN_EVERYWHERE)
endif()
# Options for our plugins
hpx_option(HPX_WITH_COMPRESSION_BZIP2 BOOL
"Enable bzip2 compression for parcel data (default: OFF)." OFF ADVANCED)
hpx_option(HPX_WITH_COMPRESSION_SNAPPY BOOL
"Enable snappy compression for parcel data (default: OFF)." OFF ADVANCED)
hpx_option(HPX_WITH_COMPRESSION_ZLIB BOOL
"Enable zlib compression for parcel data (default: OFF)." OFF ADVANCED)
# Parcel coalescing is used by the main HPX library, enable it always
hpx_option(HPX_WITH_PARCEL_COALESCING BOOL
"Enable the parcel coalescing plugin (default: ON)." ON ADVANCED)
if(HPX_WITH_PARCEL_COALESCING)
hpx_add_config_define(HPX_HAVE_PARCEL_COALESCING)
endif()
################################################################################
# Backwards compatibility options (edit for each release)
# HPX_WITH_COLOCATED_BACKWARDS_COMPATIBILITY: introduced in V0.9.11
hpx_option(HPX_WITH_COLOCATED_BACKWARDS_COMPATIBILITY BOOL
"Enable backwards compatibility for apply_colocated, async_colocated and friends"
OFF ADVANCED)
if(HPX_WITH_COLOCATED_BACKWARDS_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_COLOCATED_BACKWARDS_COMPATIBILITY)
endif()
# HPX_WITH_COMPONENT_GET_GID_COMPATIBILITY: introduced in V0.9.11
hpx_option(HPX_WITH_COMPONENT_GET_GID_COMPATIBILITY BOOL
"Enable backwards compatibility for component::get_gid() functions"
OFF ADVANCED)
if(HPX_WITH_COMPONENT_GET_GID_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_COMPONENT_GET_GID_COMPATIBILITY)
endif()
# HPX_WITH_LOCAL_DATAFLOW_COMPATIBILITY: introduced in V0.9.99
hpx_option(HPX_WITH_LOCAL_DATAFLOW_COMPATIBILITY BOOL
"Enable backwards compatibility for hpx::lcos::local::dataflow() functions"
ON ADVANCED)
if(HPX_WITH_LOCAL_DATAFLOW_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_LOCAL_DATAFLOW_COMPATIBILITY)
endif()
# HPX_WITH_GENERIC_EXECUTION_POLICY: introduced in V0.9.99
hpx_option(HPX_WITH_GENERIC_EXECUTION_POLICY BOOL
"Enable the generic execution policy (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_GENERIC_EXECUTION_POLICY)
hpx_add_config_define(HPX_HAVE_GENERIC_EXECUTION_POLICY)
endif()
# HPX_WITH_ASYNC_FUNCTION_COMPATIBILITY: introduced in V1.0.0
hpx_option(HPX_WITH_ASYNC_FUNCTION_COMPATIBILITY BOOL
"Enable old style ..._sync/..._async functions in API (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_ASYNC_FUNCTION_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_ASYNC_FUNCTION_COMPATIBILITY)
endif()
# BADBAD: This enables an overload of swap which is necessary to work around the
# problems caused by zip_iterator not being a real random access iterator.
# Dereferencing zip_iterator does not yield a true reference but
# only a temporary tuple holding true references.
#
# A real fix for this problem is proposed in PR0022R0
# (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0022r0.html)
#
hpx_option(HPX_WITH_TUPLE_RVALUE_SWAP BOOL
"Enable swapping of rvalue tuples (needed for parallel::sort_by_key, default: ON)."
ON CATEGORY "Utility" ADVANCED)
if(HPX_WITH_TUPLE_RVALUE_SWAP)
hpx_add_config_define(HPX_HAVE_TUPLE_RVALUE_SWAP)
endif()
# HPX_WITH_BOOST_CHRONO_COMPATIBILITY: introduced in V1.0.0
hpx_option(HPX_WITH_BOOST_CHRONO_COMPATIBILITY BOOL
"Enable support for boost::chrono (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_BOOST_CHRONO_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_BOOST_CHRONO_COMPATIBILITY)
endif()
# HPX_WITH_EXECUTION_POLICY_COMPATIBILITY: introduced in V1.0.0
hpx_option(HPX_WITH_EXECUTION_POLICY_COMPATIBILITY BOOL
"Enable old execution policy names in API (default: ON)"
ON ADVANCED)
if(HPX_WITH_EXECUTION_POLICY_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_EXECUTION_POLICY_COMPATIBILITY)
endif()
# HPX_WITH_TRANSFORM_REDUCE_COMPATIBILITY: introduced in V1.0.0
hpx_option(HPX_WITH_TRANSFORM_REDUCE_COMPATIBILITY BOOL
"Enable old overloads for transform_reduce and inner_product (default: ON)"
ON ADVANCED)
if(HPX_WITH_TRANSFORM_REDUCE_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_TRANSFORM_REDUCE_COMPATIBILITY)
endif()
################################################################################
# Set basic search paths for HPX
################################################################################
include_directories("${PROJECT_SOURCE_DIR}" "${CMAKE_BINARY_DIR}")
link_directories(${CMAKE_BINARY_DIR}/lib)
################################################################################
# Check for compiler compatibility
#
# Check if the selected compiler versions are supposed to work with our codebase
if(CMAKE_COMPILER_IS_GNUCXX AND HPX_WITH_GCC_VERSION_CHECK)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8)
hpx_error("GCC 4.8 or higher is required. Specify HPX_GCC_VERSION_CHECK=OFF to ignore this error.")
endif()
endif()
if(MSVC)
if(NOT (MSVC11 OR MSVC12 OR MSVC14))
hpx_error("MSVC x64 2012 or higher is required.")
elseif(NOT CMAKE_CL_64)
hpx_warn("MSVC (32Bit) will compile but will fail running larger applications because of limitations in the Windows OS.")
endif()
endif()
# Setup platform specific compiler options and check for compatible compilers
if("${HPX_PLATFORM_UC}" STREQUAL "NATIVE")
hpx_info("Compiling with the native toolset")
elseif("${HPX_PLATFORM_UC}" STREQUAL "ANDROID")
hpx_info("Compiling for Android devices")
elseif("${HPX_PLATFORM_UC}" STREQUAL "XEONPHI")
hpx_info("Compiling for Intel Xeon Phi devices")
if(NOT ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel"))
hpx_error("HPX on the MIC can only be compiled with the Intel compiler.")
endif()
elseif("${HPX_PLATFORM_UC}" STREQUAL "BLUEGENEQ")
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
hpx_error("HPX on the BG/Q can only be compiled with bgclang")
endif()
hpx_info("Compiling for BlueGene/Q")
endif()
if((MSVC14 AND CMAKE_CL_64) OR (CMAKE_CXX_COMPILER_ID STREQUAL "Clang"))
hpx_option(HPX_WITH_AWAIT BOOL
"Enable the use of experimental co_await functionality"
OFF ADVANCED CATEGORY "LCOs")
if(HPX_WITH_AWAIT)
hpx_add_config_define(HPX_HAVE_AWAIT)
hpx_option(HPX_WITH_EMULATE_COROUTINE_SUPPORT_LIBRARY BOOL
"Use hpx/util/await_traits.hpp instead of <experimental/coroutine>"
OFF ADVANCED CATEGORY "LCOs")
if(HPX_WITH_EMULATE_COROUTINE_SUPPORT_LIBRARY)
hpx_add_config_define(HPX_HAVE_EMULATE_COROUTINE_SUPPORT_LIBRARY)
endif()
if(MSVC14 AND CMAKE_CL_64)
hpx_add_target_compile_option(-await)
endif()
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
hpx_add_target_compile_option(-Xclang -fcoroutines-ts)
endif()
endif()
endif()
################################################################################
################################################################################
# Add necessary compiler flags. Flags added here include flags to disable/enable
# certain warnings, enabling C++11 mode and disabling asserts. Setting of
# optimization flags is not handled here and is left to the responsibility of
# the user to avoid conflicts in the resulting binaries
hpx_add_target_compile_definition(_DEBUG CONFIGURATIONS Debug)
hpx_add_target_compile_definition(DEBUG CONFIGURATIONS Debug)
hpx_add_target_compile_definition(HPX_DISABLE_ASSERTS
CONFIGURATIONS Release RelWithDebInfo MinSizeRelease)
hpx_add_target_compile_definition(BOOST_DISABLE_ASSERTS
CONFIGURATIONS Release RelWithDebInfo MinSizeRelease)
# Make sure we compile in C++11 mode (MSVC uses it automatically)
if(NOT MSVC)
if(HPX_WITH_CUDA AND NOT HPX_WITH_CUDA_CLANG)
set(CXX_FLAG -std=c++11)
else()
# Try -std=c++14 first
# The Intel compiler has the C++14 flag, but doesn't have sufficient C++14
# support to compile Boost. If the user has explicitly asked for it, use it,
# otherwise don't run the check.
# FIXME: This should be replaced with a version-based check in the future
# when the Intel compiler is able to build Boost with -std=c++14.
if(HPX_WITH_CXX14 OR NOT ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel"))
check_cxx_compiler_flag(-std=c++14 HPX_WITH_CXX14)
endif()
if(HPX_WITH_CXX14)
set(CXX_FLAG -std=c++14)
else()
# ... otherwise try -std=c++1y
# See comment above.
# FIXME: This should be replaced with a version-based check in the future
# when the Intel compiler is able to build Boost with -std=c++14.
if(HPX_WITH_CXX1Y OR NOT ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel"))
check_cxx_compiler_flag(-std=c++1y HPX_WITH_CXX1Y)
endif()
if(HPX_WITH_CXX1Y)
set(CXX_FLAG -std=c++1y)
else()
# ... otherwise try -std=c++11
check_cxx_compiler_flag(-std=c++11 HPX_WITH_CXX11)
if(HPX_WITH_CXX11)
set(CXX_FLAG -std=c++11)
else()
# ... otherwise try -std=c++0x
check_cxx_compiler_flag(-std=c++0x HPX_WITH_CXX0X)
if(HPX_WITH_CXX0X)
set(CXX_FLAG -std=c++0x)
endif()
endif()
endif()
endif()
endif()
hpx_add_target_compile_option(${CXX_FLAG})
endif()
################################################################################
# CUDA features
################################################################################
if(HPX_WITH_CUDA AND NOT HPX_WITH_CUDA_CLANG)
hpx_libraries(cudadevrt)
if(NOT MSVC)
hpx_library_dir(${CUDA_TOOLKIT_ROOT_DIR}/lib64)
link_directories(${CUDA_TOOLKIT_ROOT_DIR}/lib64)
# set(CUDA_NVCC_FLAGS_DEBUG ${CUDA_NVCC_FLAGS_DEBUG};-D_DEBUG;-O0;-g;-std=c++11;-Xcompiler=-g,-O0)
# set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ${CUDA_NVCC_FLAGS_RELWITHDEBINFO};-DNDEBUG;-O3;-std=c++11;-g;-Xcompiler=-g,-O3)
# set(CUDA_NVCC_FLAGS_MINSIZEREL ${CUDA_NVCC_FLAGS_MINSIZEREL};-DNDEBUG;-O1-std=c++11;;-Xcompiler=-g,-O1)
# set(CUDA_NVCC_FLAGS_RELEASE ${CUDA_NVCC_FLAGS_RELEASE};-DNDEBUG;-O3;-std=c++11;-Xcompiler=-O3)
else()
set(CUDA_PROPAGATE_HOST_FLAGS OFF)
hpx_library_dir(${CUDA_TOOLKIT_ROOT_DIR}/lib/x64)
link_directories(${CUDA_TOOLKIT_ROOT_DIR}/lib/x64)
set(CUDA_NVCC_FLAGS_DEBUG ${CUDA_NVCC_FLAGS_DEBUG};-D_DEBUG;-O0;-g;-G;-Xcompiler=-MDd;-Xcompiler=-Od;-Xcompiler=-Zi;-Xcompiler=-bigobj)
set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ${CUDA_NVCC_FLAGS_RELWITHDEBINFO};-DNDEBUG;-O2;-g;-Xcompiler=-MD,-O2,-Zi;-Xcompiler=-bigobj)
set(CUDA_NVCC_FLAGS_MINSIZEREL ${CUDA_NVCC_FLAGS_MINSIZEREL};-DNDEBUG;-O1;-Xcompiler=-MD,-O1;-Xcompiler=-bigobj)
set(CUDA_NVCC_FLAGS_RELEASE ${CUDA_NVCC_FLAGS_RELEASE};-DNDEBUG;-O2;-Xcompiler=-MD,-Ox;-Xcompiler=-bigobj)
endif()
set(CUDA_SEPARABLE_COMPILATION ON)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};${CXX_FLAG})
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-gencode=arch=compute_30,code=sm_30)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-gencode=arch=compute_35,code=sm_35)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-gencode=arch=compute_30,code=compute_30)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-gencode=arch=compute_35,code=compute_35)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};--expt-relaxed-constexpr)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};--expt-extended-lambda)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};--default-stream per-thread)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-lcudadevrt)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-rdc=true)
endif()
if(HPX_WITH_CUDA AND HPX_WITH_CUDA_CLANG)
hpx_add_target_compile_option(-DBOOST_THREAD_USES_MOVE)
hpx_add_target_compile_option(--cuda-path=${CUDA_TOOLKIT_ROOT_DIR})
hpx_libraries(cudart)
hpx_library_dir(${CUDA_TOOLKIT_ROOT_DIR}/lib64)
link_directories(${CUDA_TOOLKIT_ROOT_DIR}/lib64)
endif()
################################################################################
# C++ feature tests
################################################################################
include(HPX_PerformCxxFeatureTests)
hpx_perform_cxx_feature_tests()
################################################################################
# check for miscellaneous things
################################################################################
hpx_check_for_mm_prefetch(