Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conda/environments/bench_ann_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies:
- ninja
- nlohmann_json>=3.12.0
- openblas
- opensearch-py>=2.4.0
- pandas
- pylibraft==26.8.*,>=0.0.0a0
- pyyaml
Expand Down
1 change: 1 addition & 0 deletions conda/environments/bench_ann_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies:
- ninja
- nlohmann_json>=3.12.0
- openblas
- opensearch-py>=2.4.0
- pandas
- pylibraft==26.8.*,>=0.0.0a0
- pyyaml
Expand Down
1 change: 1 addition & 0 deletions conda/environments/bench_ann_cuda-132_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies:
- ninja
- nlohmann_json>=3.12.0
- openblas
- opensearch-py>=2.4.0
- pandas
- pylibraft==26.8.*,>=0.0.0a0
- pyyaml
Expand Down
1 change: 1 addition & 0 deletions conda/environments/bench_ann_cuda-132_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies:
- ninja
- nlohmann_json>=3.12.0
- openblas
- opensearch-py>=2.4.0
- pandas
- pylibraft==26.8.*,>=0.0.0a0
- pyyaml
Expand Down
1 change: 1 addition & 0 deletions conda/recipes/cuvs-bench-cpu/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ requirements:
- h5py ${{ h5py_version }}
- matplotlib-base>=3.9
- numpy >=1.23,<3.0
- opensearch-py>=2.4.0
- pandas
- pyyaml
- python
Expand Down
1 change: 1 addition & 0 deletions conda/recipes/cuvs-bench/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ requirements:
- h5py ${{ h5py_version }}
- libcuvs-bench-ann =${{ version }}
- matplotlib-base>=3.9
- opensearch-py>=2.4.0
- pandas
- pylibraft =${{ minor_version }}
- python
Expand Down
14 changes: 14 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ files:
includes:
- bench
- bench_python
- bench_python_opensearch
- build_cython
- build_py_cuvs
- clang
Expand Down Expand Up @@ -213,6 +214,14 @@ files:
table: project
includes:
- bench_python
py_opensearch_cuvs_bench:
output: pyproject
pyproject_dir: python/cuvs_bench
extras:
table: project.optional-dependencies
key: opensearch
includes:
- bench_python_opensearch
channels:
- rapidsai-nightly
- rapidsai
Expand Down Expand Up @@ -577,6 +586,11 @@ dependencies:
- output_types: [requirements, pyproject]
packages:
- matplotlib>=3.9
bench_python_opensearch:
common:
- output_types: [conda, pyproject]
packages:
- opensearch-py>=2.4.0
depends_on_cuda_python:
specific:
- output_types: [conda, requirements, pyproject]
Expand Down
3 changes: 3 additions & 0 deletions python/cuvs_bench/cuvs_bench/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@
)

from .cpp_gbench import CppGoogleBenchmarkBackend
from .opensearch import OpenSearchBackend

# Auto-register built-in backends
_registry = get_registry()
_registry.register("cpp_gbench", CppGoogleBenchmarkBackend)
_registry.register("opensearch", OpenSearchBackend)

__all__ = [
# Base classes and data structures
Expand All @@ -43,4 +45,5 @@
"get_backend",
# Built-in backends
"CppGoogleBenchmarkBackend",
"OpenSearchBackend",
]
Loading
Loading