-
Notifications
You must be signed in to change notification settings - Fork 117
Diskann Benchmarking Wrapper #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rapids-bot
merged 169 commits into
rapidsai:branch-25.04
from
tarang-jain:diskann-wrapper
Feb 27, 2025
Merged
Diskann Benchmarking Wrapper #260
rapids-bot
merged 169 commits into
rapidsai:branch-25.04
from
tarang-jain:diskann-wrapper
Feb 27, 2025
Conversation
This file contains hidden or 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
…diskann-wrapper
…diskann-wrapper
…diskann-wrapper
…into diskann-wrapper
…into diskann-wrapper
…diskann-wrapper
…diskann-wrapper
…diskann-wrapper
/ok to test |
…diskann-wrapper
…into diskann-wrapper
/ok to test |
/rerun tests |
/ok to test |
/ok to test |
/ok to test |
jakirkham
reviewed
Feb 27, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Tarang! 🙏
Had a couple questions below
Note: There are other occurrences like those commented on. Just picked one of each to simplify the discussion
Remove libaio from run environment (meta.yaml) Co-authored-by: jakirkham <[email protected]>
"rm devel packages from run environment" Co-authored-by: jakirkham <[email protected]>
/ok to test |
/ok to test |
cjnolet
approved these changes
Feb 27, 2025
/merge |
gforsyth
approved these changes
Feb 27, 2025
This was referenced Mar 5, 2025
[BUG] cuVS 25.04 benchmark arm64 builds failing: there are no
mkl
arm64 packages
rapidsai/docker#739
Closed
rapids-bot bot
pushed a commit
that referenced
this pull request
Mar 6, 2025
Fixes rapidsai/docker#739 #260 introduced a runtime dependency on `mkl` for the `cuvs-bench-cpu` conda package. There are not aarch64 packages for `mkl` on conda-forge, so this makes `cuvs-bench-cpu` impossible to install on aarch64. This fixes that, by applying the same "only add on x86_64" guard used for `mkl` everywhere else in this project, e.g. like this: https://github.com/rapidsai/cuvs/blob/89b03493b487910d2125fde6680590adde8e2a95/conda/recipes/cuvs-bench-cpu/meta.yaml#L51 It also proposes adding import tests to the `cuvs-bench-cpu` conda recipe, so issues like this can be caught in CI in the future. ## Notes for Reviewers I searched for references like this ```shell git grep -i mkl ``` ### How I tested this Saw lines like this in `conda-python-build` logs: ```text BUILD START: ['cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda'] ... TEST START: /tmp/conda-bld-output/linux-aarch64/cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda ... import: 'cuvs_bench' import: 'cuvs_bench.generate_groundtruth' import: 'cuvs_bench.get_dataset' import: 'cuvs_bench.plot' import: 'cuvs_bench.run' import: 'cuvs_bench.run.data_export' import: 'cuvs_bench.split_groundtruth' import: 'cuvs_bench' import: 'cuvs_bench.generate_groundtruth' import: 'cuvs_bench.get_dataset' import: 'cuvs_bench.plot' import: 'cuvs_bench.run' import: 'cuvs_bench.run.data_export' import: 'cuvs_bench.split_groundtruth' ... TEST END: /tmp/conda-bld-output/linux-aarch64/cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda ``` ([build link](https://github.com/rapidsai/cuvs/actions/runs/13687659537/job/38276160494?pr=750#step:9:5961)) Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Gil Forsyth (https://github.com/gforsyth) - Divye Gala (https://github.com/divyegala) URL: #750
jiangyinzuo
pushed a commit
to jiangyinzuo/cuvs
that referenced
this pull request
Mar 27, 2025
Fixes rapidsai/docker#739 rapidsai#260 introduced a runtime dependency on `mkl` for the `cuvs-bench-cpu` conda package. There are not aarch64 packages for `mkl` on conda-forge, so this makes `cuvs-bench-cpu` impossible to install on aarch64. This fixes that, by applying the same "only add on x86_64" guard used for `mkl` everywhere else in this project, e.g. like this: https://github.com/rapidsai/cuvs/blob/89b03493b487910d2125fde6680590adde8e2a95/conda/recipes/cuvs-bench-cpu/meta.yaml#L51 It also proposes adding import tests to the `cuvs-bench-cpu` conda recipe, so issues like this can be caught in CI in the future. ## Notes for Reviewers I searched for references like this ```shell git grep -i mkl ``` ### How I tested this Saw lines like this in `conda-python-build` logs: ```text BUILD START: ['cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda'] ... TEST START: /tmp/conda-bld-output/linux-aarch64/cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda ... import: 'cuvs_bench' import: 'cuvs_bench.generate_groundtruth' import: 'cuvs_bench.get_dataset' import: 'cuvs_bench.plot' import: 'cuvs_bench.run' import: 'cuvs_bench.run.data_export' import: 'cuvs_bench.split_groundtruth' import: 'cuvs_bench' import: 'cuvs_bench.generate_groundtruth' import: 'cuvs_bench.get_dataset' import: 'cuvs_bench.plot' import: 'cuvs_bench.run' import: 'cuvs_bench.run.data_export' import: 'cuvs_bench.split_groundtruth' ... TEST END: /tmp/conda-bld-output/linux-aarch64/cuvs-bench-cpu-25.04.00a96-py312_250305_g94340bc_96.conda ``` ([build link](https://github.com/rapidsai/cuvs/actions/runs/13687659537/job/38276160494?pr=750#step:9:5961)) Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Gil Forsyth (https://github.com/gforsyth) - Divye Gala (https://github.com/divyegala) URL: rapidsai#750
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
benchmarking
CMake
cpp
feature request
New feature or request
non-breaking
Introduces a non-breaking change
Python
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Brings DiskANN into cuvs-bench