26 lines
903 B
Ruby
26 lines
903 B
Ruby
class Clblast < Formula
|
|
desc "Tuned OpenCL BLAS library"
|
|
homepage "https://github.com/CNugteren/CLBlast"
|
|
url "https://github.com/CNugteren/CLBlast/archive/1.4.1.tar.gz"
|
|
sha256 "2c03483d4470066c37d31288e07746c8f1ca5bfb52eecdedb2c7252bb1fb2d8d"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "bc1bc4fd8d0be7b9c40f21fefe5c44967ca331cd620dca30082907832f6f6f3b" => :high_sierra
|
|
sha256 "f58bea47c9b7528ea31a6cc1edd5c9477c93db3e97519eeb817fb00df9e92bfe" => :sierra
|
|
sha256 "b9d7b07467472a20e1fa1a914d9272e93eb5f21ccaeb3603ab03e52bfdf44182" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
pkgshare.install "samples" # for a simple library linking test
|
|
end
|
|
|
|
test do
|
|
system ENV.cc, pkgshare/"samples/sgemm.c", "-I#{include}", "-L#{lib}",
|
|
"-lclblast", "-framework", "OpenCL"
|
|
end
|
|
end
|