@@ -171,7 +171,6 @@ AC_ARG_ENABLE([debug],
171
171
io,
172
172
loops,
173
173
mpool,
174
- multinode,
175
174
qarray,
176
175
shepherd,
177
176
syncvars,
@@ -181,7 +180,7 @@ AC_ARG_ENABLE([debug],
181
180
threadqueues,
182
181
xomp] ) ] ,
183
182
[ AS_IF ( [ test "x$enable_debug" = "xyes"] ,
184
- [ enable_debug="affinity,threadqueues,thread,shepherd,core,team,mpool,syscalls,febs,syncvars,io,loops,barrier,qarray,futurelib,xomp,multinode "] )
183
+ [ enable_debug="affinity,threadqueues,thread,shepherd,core,team,mpool,syscalls,febs,syncvars,io,loops,barrier,qarray,futurelib,xomp"] )
185
184
for area in $(echo "$enable_debug" | sed 's/,/ /g') ; do
186
185
case "$area" in
187
186
affinity) enable_debug_affinity=yes ;;
@@ -200,7 +199,6 @@ AC_ARG_ENABLE([debug],
200
199
qarray|qarrays) enable_debug_qarray=yes ;;
201
200
futurelib) enable_debug_futurelib=yes ;;
202
201
xomp) enable_debug_xomp=yes ;;
203
- multinode) enable_debug_multinode=yes ;;
204
202
*) AC_MSG_ERROR ( [ Unrecognized debug category ($area).] ) ;;
205
203
esac
206
204
done] ,
@@ -383,10 +381,6 @@ AC_ARG_WITH([cacheline-width],
383
381
[ ] ,
384
382
[ with_cacheline_width=256] )
385
383
386
- AC_ARG_ENABLE ( [ multinode] ,
387
- [ AS_HELP_STRING ( [ --enable-multinode] ,
388
- [ Enable experimental support for multi-node qthreads applications] ) ] )
389
-
390
384
AC_ARG_VAR ( [ MPICC] , [ Path to the MPI C compiler-wrapper.] )
391
385
AC_ARG_VAR ( [ MPICXX] , [ Path to the MPI C++ compiler-wrapper.] )
392
386
@@ -860,8 +854,6 @@ AS_IF([test "x$enable_debug" = x -o "x$enable_debug" = xno],
860
854
[ QTHREAD_DEBUG_FUTURELIB] , [ prints out futurelib debugging information at runtime] )
861
855
QT_COND_DEFINE([ $enable_debug_xomp] ,
862
856
[ QTHREAD_DEBUG_XOMP] , [ prints out xomp debugging information at runtime] )
863
- QT_COND_DEFINE([ $enable_debug_multinode] ,
864
- [ QTHREAD_DEBUG_MULTINODE] , [ prints out multinode debugging information at runtime] )
865
857
] )
866
858
867
859
AS_IF ( [ test "x$enable_hardware_timer" != "xno"] ,
@@ -953,16 +945,6 @@ AS_IF([test "x$qthread_topo" != xno],
953
945
[ AC_MSG_ERROR ( [ Specified topology library ($qthread_topo) does not work.] ) ] ) ] )] )
954
946
] )
955
947
956
- AS_IF ( [ test "x$enable_multinode" = "xyes"] ,
957
- [ AC_DEFINE ( [ QTHREAD_MULTINODE] , [ 1] , [ Defined if multinode support desired] )
958
- QTHREAD_CHECK_PORTALS4([ ] , [ AC_MSG_ERROR ( [ Could not find Portals 4 library] ) ] )
959
- CPPFLAGS="$CPPFLAGS $portals4_CPPFLAGS $portals4_runtime_CPPFLAGS"
960
- LDFLAGS="$LDFLAGS $portals4_LDFLAGS $portals4_runtime_LDFLAGS"
961
- LIBS="$LIBS $portals4_LIBS $portals4_runtime_LIBS"
962
- ] )
963
-
964
-
965
-
966
948
AS_IF ( [ test "x$enable_lf_febs" == "xyes"] ,
967
949
[ AC_DEFINE ( [ LOCK_FREE_FEBS] , [ 1] , [ Define to use a lock-free hash table for FEB metadata.] ) ] ,
968
950
[ enable_lf_febs=no] )
@@ -993,7 +975,6 @@ AM_CONDITIONAL([COMPILE_SPAWNCACHE], [test "x$enable_spawn_cache" = "xyes"])
993
975
AM_CONDITIONAL([ COMPILE_EUREKAS] , [ test "x$enable_eurekas" = "xyes"] )
994
976
AM_CONDITIONAL([ HAVE_GUARD_PAGES] , [ test "x$enable_guard_pages" = "xyes"] )
995
977
AM_CONDITIONAL([ HAVE_PROG_TIMELIMIT] , [ test "x$timelimit_path" != "x"] )
996
- AM_CONDITIONAL([ COMPILE_MULTINODE] , [ test "$enable_multinode" = "yes"] )
997
978
AM_CONDITIONAL([ QTHREAD_PERFORMANCE] , [ test "$enable_performance_monitoring" = "yes"] )
998
979
AM_CONDITIONAL([ WANT_SINGLE_WORKER_SCHEDULER] , [ test "x$with_scheduler" = "xnemesis" -o "x$with_scheduler" = "xlifo" -o "x$with_scheduler" = "xmutexfifo" -o "x$with_scheduler" = "xmtsfifo" -o "x$with_scheduler" = "xmdlifo"] )
999
980
AM_CONDITIONAL([ COMPILE_OMP_BENCHMARKS] , [ test "x$have_openmp" = "xyes"] )
@@ -1016,7 +997,6 @@ AC_CONFIG_FILES([Makefile
1016
997
test/utils/rng/Makefile
1017
998
test/basics/Makefile
1018
999
test/features/Makefile
1019
- test/multinode/Makefile
1020
1000
test/stress/Makefile
1021
1001
test/benchmarks/Makefile
1022
1002
test/benchmarks/mantevo/Makefile
@@ -1045,13 +1025,9 @@ case "$qthread_cv_stack_size" in
1045
1025
2096) stack_string="2kB" ;;
1046
1026
*) stack_string="${qthread_cv_stack_size} bytes" ;;
1047
1027
esac
1048
- AS_IF ( [ test "x$enable_multinode" = "xyes"] ,
1049
- [ multinode_string="$enable_multinode, $with_multinode_runtime"] ,
1050
- [ multinode_string="no"] )
1051
1028
echo ""
1052
1029
echo "System Characteristics:"
1053
1030
echo " Target Style: $qthread_implementation"
1054
- echo " Multi-node: $multinode_string"
1055
1031
echo " Topology API: ${qthread_topo:-none}"
1056
1032
echo " Qtimer type: ${qthread_timer_type:-none}"
1057
1033
echo " Aligned_t size: $sizeof_aligned_t (aligned on $align_aligned_t byte boundaries)"
0 commit comments