* Added support for MPI-3.1 features including nonblocking collective I/O, address manipulation routines, thread-safety for MPI initialization, pre-init functionality, and new MPI_T routines to look up variables by name. * Fortran 2008 bindings are enabled by default and fully supported. * Added support for the Mellanox MXM InfiniBand interface. (thanks to Mellanox for the code contribution). * Added support for the Mellanox HCOLL interface for collectives. (thanks to Mellanox for the code contribution). * Significant stability improvements to the MPICH/portals4 implementation. * Completely revamped RMA infrastructure including several scalability improvements, performance improvements, and bug fixes. * Added experimental support for Open Fabrics Interfaces (OFI) version 1.0.0. https://github.com/ofiwg/libfabric (thanks to Intel for code contribution) * The Myrinet MX network module, which had a life cyle from 1.1 till 3.1.2, has now been deleted. * Several other minor bug fixes, memory leak fixes, and code cleanup.
15 lines
593 B
Text
15 lines
593 B
Text
$NetBSD: patch-src_mpi_romio_configure,v 1.1 2017/04/29 18:18:52 adam Exp $
|
|
|
|
Portability fix.
|
|
|
|
--- src/mpi/romio/configure.orig 2017-04-28 20:33:04.000000000 +0000
|
|
+++ src/mpi/romio/configure
|
|
@@ -22929,7 +22929,7 @@ if test "${with_aio_lite+set}" = set; th
|
|
withval=$with_aio_lite; with_aiolite=yes
|
|
fi
|
|
|
|
-if test "x$with_aiolite" == xyes; then :
|
|
+if test "x$with_aiolite" = xyes; then :
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for lio_listio in -laio-lite" >&5
|
|
$as_echo_n "checking for lio_listio in -laio-lite... " >&6; }
|
|
if ${ac_cv_lib_aio_lite_lio_listio+:} false; then :
|