-
Notifications
You must be signed in to change notification settings - Fork 197
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
Fix compilation error when _CLK_BREAKDOWN is defined in cagra. #2350
Conversation
Hello @enp1s0 , can you please review this PR and add labels for Label Checker CI? |
PR rapidsai#1740 forgot to rename `BLOCK_SIZE` in `#ifdef _CLK_BREAKDOWN` blocks. The use of `RAFT_LOG_DEBUG` in kernel function results in compilation errors, replace it with `printf`. Also remove an unused function in search_single_cta_kernel-inl.cuh
ae78ee9
to
0537118
Compare
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.
Thank you @jiangyinzuo for the PR. It looks good to me. Sorry for forgetting to update the clock measurement code in my previous PR.
@cjnolet Can you run the CI? |
/ok to test |
/ok to test |
@tfeher I fixed the code style error reported by |
/ok to test |
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 @jiangyinzuo for the fix, the PR looks good to me.
Is the failure related to this PR? |
@cjnolet Yes, it is needed. As mentioned in the PR description, this PR will be ported to cuVS after this PR is merged. |
/ok to test |
I have created a PR for cuvs, see rapidsai/cuvs#202 |
/merge |
Port from rapidsai/raft#2350 Authors: - Yinzuo Jiang (https://github.com/jiangyinzuo) - Corey J. Nolet (https://github.com/cjnolet) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #202
PR #1740 forgot to rename
BLOCK_SIZE
in#ifdef _CLK_BREAKDOWN
blocks.The use of
RAFT_LOG_DEBUG
in kernel function results in compilationerrors, replace it with
printf
.Also remove an unused function in search_single_cta_kernel-inl.cuh
After merging: