61 lines
2 KiB
Ruby
61 lines
2 KiB
Ruby
class Openblas < Formula
|
|
desc "Optimized BLAS library"
|
|
homepage "https://www.openblas.net/"
|
|
url "https://github.com/xianyi/OpenBLAS/archive/v0.3.1.tar.gz"
|
|
sha256 "1f5e956f35f3acdd3c74516e955d797a320c2e0135e31d838cbdb3ea94d0eb33"
|
|
head "https://github.com/xianyi/OpenBLAS.git", :branch => "develop"
|
|
|
|
bottle do
|
|
sha256 "cb5d326cce9a51dd81d5d310f0a49f026148bab201f574e5745d00c5bd6b4654" => :high_sierra
|
|
sha256 "d7643624b339005423e099eba619559df7bc79ba92974e7ab72f34cce2c2842c" => :sierra
|
|
sha256 "0851ab370feb27ba6f2034141614921bb678ddbd56c92f05cf6ec59980a1febd" => :el_capitan
|
|
end
|
|
|
|
keg_only :provided_by_macos,
|
|
"macOS provides BLAS and LAPACK in the Accelerate framework"
|
|
|
|
option "with-openmp", "Enable parallel computations with OpenMP"
|
|
|
|
depends_on "gcc" # for gfortran
|
|
|
|
fails_with :clang if build.with? "openmp"
|
|
|
|
def install
|
|
ENV["DYNAMIC_ARCH"] = "1" if build.bottle?
|
|
ENV["USE_OPENMP"] = "1" if build.with? "openmp"
|
|
|
|
# Must call in two steps
|
|
system "make", "CC=#{ENV.cc}", "FC=gfortran", "libs", "netlib", "shared"
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
|
|
lib.install_symlink "libopenblas.dylib" => "libblas.dylib"
|
|
lib.install_symlink "libopenblas.dylib" => "liblapack.dylib"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include "cblas.h"
|
|
|
|
int main(void) {
|
|
int i;
|
|
double A[6] = {1.0, 2.0, 1.0, -3.0, 4.0, -1.0};
|
|
double B[6] = {1.0, 2.0, 1.0, -3.0, 4.0, -1.0};
|
|
double C[9] = {.5, .5, .5, .5, .5, .5, .5, .5, .5};
|
|
cblas_dgemm(CblasColMajor, CblasNoTrans, CblasTrans,
|
|
3, 3, 2, 1, A, 3, B, 3, 2, C, 3);
|
|
for (i = 0; i < 9; i++)
|
|
printf("%lf ", C[i]);
|
|
printf("\\n");
|
|
if (fabs(C[0]-11) > 1.e-5) abort();
|
|
if (fabs(C[4]-21) > 1.e-5) abort();
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}", "-lopenblas",
|
|
"-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|