-
Notifications
You must be signed in to change notification settings - Fork 916
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
[REVIEW] Add benchmark build option to root build.sh #2786
[REVIEW] Add benchmark build option to root build.sh #2786
Conversation
@@ -131,6 +137,7 @@ if (( ${NUMARGS} == 0 )) || hasArg libcudf; then | |||
cd ${LIBCUDF_BUILD_DIR} | |||
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} \ | |||
-DCMAKE_CXX11_ABI=ON \ | |||
-DBUILD_BENCHMARKS=${BENCHMARKS} \ |
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.
Do you want to do with this approach or do you want a make bench
cmake command(s) similar to tests?
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.
Ultimately something you described is ideal. I'm trying to get this integrated in a nightly Jenkins build today, so this is more of a bandaid patch to keep it easy to work with for now.
Codecov Report
@@ Coverage Diff @@
## branch-0.10 #2786 +/- ##
===============================================
- Coverage 86.44% 86.43% -0.01%
===============================================
Files 48 48
Lines 8857 8855 -2
===============================================
- Hits 7656 7654 -2
Misses 1201 1201
Continue to review full report at Codecov.
|
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.
Looks good, just one minor detail to keep things consistent.
Addresses: #2784