60 lines
2.5 KiB
Ruby
60 lines
2.5 KiB
Ruby
class Scalapack < Formula
|
|
desc "High-performance linear algebra for distributed memory machines"
|
|
homepage "https://www.netlib.org/scalapack/"
|
|
url "https://www.netlib.org/scalapack/scalapack-2.1.0.tgz"
|
|
sha256 "61d9216cf81d246944720cfce96255878a3f85dec13b9351f1fa0fd6768220a6"
|
|
license "BSD-3-Clause"
|
|
revision 2
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/href=.*?scalapack[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "7743ddfe24954d50640db05401637ce8878ffb795c4a991d3ba805a14ea3cca7"
|
|
sha256 cellar: :any, big_sur: "da83f379e10c2bcfe543767c7e6a62ccd825e5f9d3cfb7ed066e9dd9c62c8154"
|
|
sha256 cellar: :any, catalina: "281e3d5317f1616e8d5a6a3b9c37fbe6ee29a03b2abe14055854902a6c009a87"
|
|
sha256 cellar: :any, mojave: "b222f27ffed17605ffca2d1b0b4804f4c66ec916c9d2b5f2dd085ad2427fa791"
|
|
sha256 cellar: :any, high_sierra: "ea92d3247883a9e0de28483a34d1ca064d395d28c8a622fbac571f4cd6d0e64d"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "gcc" # for gfortran
|
|
depends_on "open-mpi"
|
|
depends_on "openblas"
|
|
|
|
# Patch for compatibility with GCC 10
|
|
# https://github.com/Reference-ScaLAPACK/scalapack/pull/26
|
|
patch do
|
|
url "https://github.com/Reference-ScaLAPACK/scalapack/commit/bc6cad585362aa58e05186bb85d4b619080c45a9.patch?full_index=1"
|
|
sha256 "f0892888e5a83d984e023e76eabae8864ad89b90ae3a41d472b960c95fdab981"
|
|
end
|
|
|
|
def install
|
|
mkdir "build" do
|
|
blas = "-L#{Formula["openblas"].opt_lib} -lopenblas"
|
|
system "cmake", "..", *std_cmake_args, "-DBUILD_SHARED_LIBS=ON",
|
|
"-DBLAS_LIBRARIES=#{blas}", "-DLAPACK_LIBRARIES=#{blas}"
|
|
system "make", "all"
|
|
system "make", "install"
|
|
end
|
|
|
|
pkgshare.install "EXAMPLE"
|
|
end
|
|
|
|
test do
|
|
cp_r pkgshare/"EXAMPLE", testpath
|
|
cd "EXAMPLE" do
|
|
system "mpif90", "-o", "xsscaex", "psscaex.f", "pdscaexinfo.f", "-L#{opt_lib}", "-lscalapack"
|
|
assert `mpirun -np 4 ./xsscaex | grep 'INFO code' | awk '{print $NF}'`.to_i.zero?
|
|
system "mpif90", "-o", "xdscaex", "pdscaex.f", "pdscaexinfo.f", "-L#{opt_lib}", "-lscalapack"
|
|
assert `mpirun -np 4 ./xdscaex | grep 'INFO code' | awk '{print $NF}'`.to_i.zero?
|
|
system "mpif90", "-o", "xcscaex", "pcscaex.f", "pdscaexinfo.f", "-L#{opt_lib}", "-lscalapack"
|
|
assert `mpirun -np 4 ./xcscaex | grep 'INFO code' | awk '{print $NF}'`.to_i.zero?
|
|
system "mpif90", "-o", "xzscaex", "pzscaex.f", "pdscaexinfo.f", "-L#{opt_lib}", "-lscalapack"
|
|
assert `mpirun -np 4 ./xzscaex | grep 'INFO code' | awk '{print $NF}'`.to_i.zero?
|
|
end
|
|
end
|
|
end
|