You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're running into this while trying to test the CPU-only algorithm(s) on hardware that don't contain GPUs. The current libraft-ann-bench package brings in cudatoolkit and the actual underlying C++ benchmark implementation is making calls to cuda runtime. In order for us to make fair comparisons with our reproducible benchmarks, we need to be able to support running hnswlib benchmark in a CPU-only mode.
The text was updated successfully, but these errors were encountered:
Just a note that #1661 already does not require CUDA to run hnswlib at runtime and the change to make it compile without CUDA would be trivial as well.
Update: I went ahead and added the last bits to make hnswlib benchmarks compile and run without CUDA
(though ATM some changes to the main cpp/CMakeLists.txt required for this, which I didn't do).
We're running into this while trying to test the CPU-only algorithm(s) on hardware that don't contain GPUs. The current
libraft-ann-bench
package brings in cudatoolkit and the actual underlying C++ benchmark implementation is making calls to cuda runtime. In order for us to make fair comparisons with our reproducible benchmarks, we need to be able to support running hnswlib benchmark in a CPU-only mode.The text was updated successfully, but these errors were encountered: