2019-10-22 22:23:49 +00:00
|
|
|
class Ngt < Formula
|
|
|
|
desc "Neighborhood graph and tree for indexing high-dimensional data"
|
|
|
|
homepage "https://github.com/yahoojapan/NGT"
|
2019-12-06 00:47:25 +00:00
|
|
|
url "https://github.com/yahoojapan/NGT/archive/v1.8.4.tar.gz"
|
|
|
|
sha256 "3edcbad5865c23bff399d4b0419ce84e1adbcda5c04fa88088f795782ab3a7d3"
|
2019-10-22 22:23:49 +00:00
|
|
|
|
2019-10-22 22:32:40 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2019-12-06 08:58:22 +00:00
|
|
|
sha256 "d80e3040720c7f35c43bf9270141e0b10cf7313107af35ae088ddd6ca205174d" => :catalina
|
|
|
|
sha256 "288fdb59156ddf7819f259657d43c860c1a9cfdbe2ac38daa0d7953cff4e6a6b" => :mojave
|
|
|
|
sha256 "fb50c0927a8a06dff04acc1512acf980bc65819eda8b11776b077e242e116ee1" => :high_sierra
|
2019-10-22 22:32:40 +00:00
|
|
|
end
|
|
|
|
|
2019-10-22 22:23:49 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
depends_on "libomp"
|
|
|
|
|
|
|
|
def install
|
|
|
|
mkdir "build" do
|
|
|
|
system "cmake", "..", *std_cmake_args
|
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
pkgshare.install "data"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
cp_r (pkgshare/"data"), testpath
|
|
|
|
system "#{bin}/ngt", "-d", "128", "-o", "c", "create", "index", "data/sift-dataset-5k.tsv"
|
|
|
|
end
|
|
|
|
end
|