-
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
Add gbenchmarks for strings replace regex functions #7541
Add gbenchmarks for strings replace regex functions #7541
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7541 +/- ##
===============================================
+ Coverage 81.86% 82.05% +0.19%
===============================================
Files 101 101
Lines 16884 17008 +124
===============================================
+ Hits 13822 13956 +134
+ Misses 3062 3052 -10
Continue to review full report at Codecov.
|
@gpucibot merge |
Reference #5698
This creates a gbenchmark for
cudf::strings::replace_re
functions and thecudf::strings::replace_with_backrefs
function. The benchmarks measures various sized rows as well as strings lengths. This PR also includes changes to source files for these 3 functions cleaning up the code and replacingdevice_vector
usages withdevice_uvector
anddevice_span
.