-
Notifications
You must be signed in to change notification settings - Fork 130
Use JIT LTO compilation for CAGRA search kernels #1320
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
base: branch-25.10
Are you sure you want to change the base?
Conversation
enable_check_generated_files: false | ||
ignored_pr_jobs: "telemetry-summarize" | ||
conda-cpp-build: | ||
needs: checks |
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.
Why has this been removed? wheel-build-libcuvs
still has it.
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.
Just to run CI, I couldn't get the style checker to pass because pre-commit for me locally does not raise any CMake styling issue.
- libcurand | ||
- libcusolver | ||
- libcusparse | ||
- libnvjitlink-dev |
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.
Why does this have the -dev
suffix? The others above in this section don't.
- libcusparse-dev | ||
run: | ||
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }} | ||
- libnvjitlink-dev |
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.
Why does this have the -dev
suffix? Headers shouldn't be needed at runtime.
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.
That's a good point, we probably only need libnvjitlink
at run
.
get_filename_component(obj_name ${obj} NAME_WE) | ||
get_filename_component(obj_dir ${obj} DIRECTORY) | ||
|
||
if(obj_ext MATCHES ".fatbin") |
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.
if(obj_ext MATCHES ".fatbin") | |
if(obj_ext MATCHES "\\.fatbin$") |
# ============================================================================= | ||
|
||
set(file_contents) | ||
foreach(obj ${OBJECTS}) |
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.
foreach(obj ${OBJECTS}) | |
foreach(obj IN LISTS OBJECTS) |
- output_types: conda | ||
packages: | ||
- libcuvs-tests==25.10.*,>=0.0.0a0 | ||
depends_on_libnvjitlink-dev: |
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.
We typically don't put hyphens in dependency set names:
depends_on_libnvjitlink-dev: | |
depends_on_libnvjitlink_dev: |
@KyleFromNVIDIA thanks Kyle for your review! Unfortunately, this PR is still in draft state and needs a lot of work and benchmarking to be done. However, I will attempt to answer your review during the dev process. |
No description provided.