-
Notifications
You must be signed in to change notification settings - Fork 915
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
Change file extension for groupby benchmark #10985
Change file extension for groupby benchmark #10985
Conversation
This comment was marked as off-topic.
This comment was marked as off-topic.
cpp/benchmarks/CMakeLists.txt
Outdated
groupby/group_rank_benchmark.cu | ||
groupby/group_no_requests.cpp | ||
groupby/group_scan.cpp | ||
groupby/group_rank_benchmark.cpp |
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.
Two requests:
- Can you also remove the word
benchmark
from this filename? It seems to have escaped Remove benchmarks suffix #10112. - Why is this file listed in both the GBench and NVBench sections? I believe it is only an NVBench benchmark.
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.
- Done.
- I don't know exactly why, but believe that the
_NVBench
version output a very ugly result. The old_Bench
version outputs a table that is very human readable.
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.
nvbench be like 😭
@gpucibot merge |
Files in the groupby benchmark do not need to be in
.cu
extension---they don't contain any device code. This PR changes them to the.cpp
extension.