105 lines
3.4 KiB
Ruby
105 lines
3.4 KiB
Ruby
class OpenMpiAT16 < Formula
|
|
desc "High performance message passing library"
|
|
homepage "https://www.open-mpi.org/"
|
|
url "https://www.open-mpi.org/software/ompi/v1.6/downloads/openmpi-1.6.5.tar.bz2"
|
|
sha256 "fe37bab89b5ef234e0ac82dc798282c2ab08900bf564a1ec27239d3f1ad1fc85"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "fdb1ad4c5bb54e7acef15e3556a472fde52e4de801eff24fb25b6603d8145345" => :high_sierra
|
|
sha256 "1544bc7afa0770d1b16d68834bebc6a6df3ec5786cddc208c2ab98bf3830302b" => :sierra
|
|
sha256 "f2e4d5ebbec3cf80800d23b1280347eda1af9199f11ff3e911561ae68da6b590" => :el_capitan
|
|
sha256 "14b7c80bb0b0db1bb77ccb36f4ee149ab1007b014706752efe19819d59f18772" => :yosemite
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
option "without-fortran", "Do not build the Fortran bindings"
|
|
option "with-mpi-thread-multiple", "Enable MPI_THREAD_MULTIPLE"
|
|
|
|
deprecated_option "disable-fortran" => "without-fortran"
|
|
deprecated_option "enable-mpi-thread-multiple" => "with-mpi-thread-multiple"
|
|
|
|
depends_on :fortran => :recommended
|
|
|
|
# Fixes error in tests, which makes them fail on clang.
|
|
# Upstream ticket: https://svn.open-mpi.org/trac/ompi/ticket/4255
|
|
patch :DATA
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--enable-ipv6
|
|
]
|
|
|
|
args << "--disable-mpi-f77" << "--disable-mpi-f90" if build.without? "fortran"
|
|
args << "--enable-mpi-thread-multiple" if build.with? "mpi-thread-multiple"
|
|
|
|
system "./configure", *args
|
|
system "make", "all"
|
|
system "make", "check"
|
|
system "make", "install"
|
|
|
|
# If Fortran bindings were built, there will be a stray `.mod` file
|
|
# (Fortran header) in `lib` that needs to be moved to `include`.
|
|
include.install lib/"mpi.mod" if File.exist? "#{lib}/mpi.mod"
|
|
|
|
# Not sure why the wrapped script has a jar extension - adamv
|
|
libexec.install bin/"vtsetup.jar"
|
|
bin.write_jar_script libexec/"vtsetup.jar", "vtsetup.jar"
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.c").write <<~EOS
|
|
#include <mpi.h>
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int size, rank, nameLen;
|
|
char name[MPI_MAX_PROCESSOR_NAME];
|
|
MPI_Init(NULL, NULL);
|
|
MPI_Comm_size(MPI_COMM_WORLD, &size);
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
|
MPI_Get_processor_name(name, &nameLen);
|
|
printf("[%d/%d] Hello, world! My name is %s.\\n", rank, size, name);
|
|
MPI_Finalize();
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system "#{bin}/mpicc", "hello.c", "-o", "hello"
|
|
system "./hello"
|
|
system "#{bin}/mpirun", "-np", "4", "./hello"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/test/datatype/ddt_lib.c b/test/datatype/ddt_lib.c
|
|
index 015419d..c349384 100644
|
|
--- a/test/datatype/ddt_lib.c
|
|
+++ b/test/datatype/ddt_lib.c
|
|
@@ -209,7 +209,7 @@ int mpich_typeub2( void )
|
|
|
|
int mpich_typeub3( void )
|
|
{
|
|
- int blocklen[2], err = 0, idisp[3];
|
|
+ int blocklen[3], err = 0, idisp[3];
|
|
size_t sz;
|
|
MPI_Aint disp[3], lb, ub, ex;
|
|
ompi_datatype_t *types[3], *dt1, *dt2, *dt3, *dt4, *dt5;
|
|
diff --git a/test/datatype/opal_ddt_lib.c b/test/datatype/opal_ddt_lib.c
|
|
index 4491dcc..b58136d 100644
|
|
--- a/test/datatype/opal_ddt_lib.c
|
|
+++ b/test/datatype/opal_ddt_lib.c
|
|
@@ -761,7 +761,7 @@ int mpich_typeub2( void )
|
|
|
|
int mpich_typeub3( void )
|
|
{
|
|
- int blocklen[2], err = 0, idisp[3];
|
|
+ int blocklen[3], err = 0, idisp[3];
|
|
size_t sz;
|
|
OPAL_PTRDIFF_TYPE disp[3], lb, ub, ex;
|
|
opal_datatype_t *types[3], *dt1, *dt2, *dt3, *dt4, *dt5;
|