-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add end-to-end CUDA ann-benchmarks to raft (#1304)
New `bench/ann` artifact for comparing (C++ APIs for) GPU-acclerated algorithms end-to-end. Working on this w/ @tfeher but had to squash the original commits into a single commit. Things left to do: - [x] Separate `benchmarks` executables for each different algorithm - [x] Separate build targets for `ggnn` and `hnswlib` - [x] Revise `bench/ann` docs - [x] Break `factory.cuh` abd `benchmark.cu` / `benchmark.cpp` into individual files for each different algorithm to make it easier to plug in new algorithms. - [x] Separate into its own conda package closes #1211 Authors: - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Ray Douglass (https://github.com/raydouglass) - Ben Frederickson (https://github.com/benfred) - Tamas Bela Feher (https://github.com/tfeher) URL: #1304
- Loading branch information
Showing
103 changed files
with
8,371 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This file is generated by `rapids-dependency-file-generator`. | ||
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. | ||
channels: | ||
- rapidsai | ||
- rapidsai-nightly | ||
- dask/label/dev | ||
- conda-forge | ||
- nvidia | ||
dependencies: | ||
- c-compiler | ||
- clang-tools=11.1.0 | ||
- clang=11.1.0 | ||
- cmake>=3.23.1,!=3.25.0 | ||
- cuda-profiler-api=11.8.86 | ||
- cudatoolkit=11.8 | ||
- cxx-compiler | ||
- cython>=0.29,<0.30 | ||
- faiss-proc=*=cuda | ||
- gcc_linux-64=11.* | ||
- glog>=0.6.0 | ||
- h5py>=3.8.0 | ||
- hnswlib=0.7.0 | ||
- libcublas-dev=11.11.3.6 | ||
- libcublas=11.11.3.6 | ||
- libcurand-dev=10.3.0.86 | ||
- libcurand=10.3.0.86 | ||
- libcusolver-dev=11.4.1.48 | ||
- libcusolver=11.4.1.48 | ||
- libcusparse-dev=11.7.5.86 | ||
- libcusparse=11.7.5.86 | ||
- libfaiss>=1.7.1 | ||
- nccl>=2.9.9 | ||
- ninja | ||
- nlohmann_json>=3.11.2 | ||
- scikit-build>=0.13.1 | ||
- sysroot_linux-64==2.17 | ||
name: bench_ann_cuda-118_arch-x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
|
||
./build.sh tests bench-ann --allgpuarch --no-nvtx | ||
cmake --install cpp/build --component ann_bench |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (c) 2022-2023, NVIDIA CORPORATION. | ||
|
||
./build.sh tests bench --allgpuarch --no-nvtx | ||
./build.sh tests bench-prims --allgpuarch --no-nvtx | ||
cmake --install cpp/build --component testing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.