51 lines
2 KiB
Ruby
51 lines
2 KiB
Ruby
class Scalapack < Formula
|
|
desc "High-performance linear algebra for distributed memory machines"
|
|
homepage "http://www.netlib.org/scalapack/"
|
|
url "http://www.netlib.org/scalapack/scalapack-2.0.2.tgz"
|
|
sha256 "0c74aeae690fe5ee4db7926f49c5d0bb69ce09eea75beb915e00bba07530395c"
|
|
revision 10
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "1ce4bb3c8dd855dfd73502eaa5446ba6d2f29a118b69de37e86e0df5ba6a35d1" => :high_sierra
|
|
sha256 "adba6fc8c47b72e7313020ea80d31b1a2ab01021d2595fc8b0266ad3114a5d2a" => :sierra
|
|
sha256 "c07c0df6e5c7773397b3716fd2660a89fdcab54bf73d2e55546e3166afe5c7c8" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "gcc" # for gfortran
|
|
depends_on "open-mpi"
|
|
depends_on "openblas" => :optional
|
|
depends_on "veclibfort" if build.without?("openblas")
|
|
|
|
def install
|
|
if build.with? "openblas"
|
|
blas = "-L#{Formula["openblas"].opt_lib} -lopenblas"
|
|
else
|
|
blas = "-L#{Formula["veclibfort"].opt_lib} -lvecLibFort"
|
|
end
|
|
|
|
mkdir "build" do
|
|
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
|