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" bottle do cellar :any sha256 "de9051ce3d04005ff03dc2e2456ae61c3cf25365fcd4bbbfab929ec0e9f87e0d" => :catalina sha256 "9d75fcf6f2b2baaa23375b0d6b274a82babab465781a6f38ed234dabc4c0fb4f" => :mojave sha256 "3a7f6ff05140808a592237a2d0637302e152c84e47574b9830e81039916e8ef2" => :high_sierra end depends_on "cmake" => :build depends_on "gcc" # for gfortran depends_on "open-mpi" depends_on "openblas" 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