-
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
Replace ccache
with sccache
#10146
Replace ccache
with sccache
#10146
Conversation
This PR replaces `ccache` with `sccache`.
rerun tests |
1 similar comment
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10146 +/- ##
===============================================
Coverage ? 10.48%
===============================================
Files ? 122
Lines ? 20496
Branches ? 0
===============================================
Hits ? 2148
Misses ? 18348
Partials ? 0 Continue to review full report at Codecov.
|
pre-cache C++ build time (link to log): 1:34:39.5 |
rerun tests |
Is there any way to get the ccache hit results for the build. We report that in the Build Metrics Report. Lines 187 to 194 in b7aa47f
These can be helpful in understanding the results. |
@davidwendt, I had this on my list of things to investigate 🙂. You beat me to it. ccache -s
sccache -s
There is also a All sccache commands
So it seems that we should be able to get the same information from |
post-cache C++ build time (link to log): 0:05:36.4 |
I'm not sure. Are the cache-hits from a local cache for the build? That is, are the sscache statistics from the server's cache or are the statistics local to the current build? |
The stats are local to the current build. https://github.com/mozilla/sccache/blob/master/docs/Jenkins.md |
@davidwendt, I pushed commit ac47436 with the changes we discussed. Please review when you have a minute. |
The |
477095c
to
c934c7b
Compare
yeah, interesting. I'll debug. |
Just pushed an update. As it turns out, "sccache -s" with stats
"sccache -s" with no stats
|
Ok. This looks great: https://gpuci.gpuopenanalytics.com/job/rapidsai/job/gpuci/job/cudf/job/prb/job/cudf-cpu-cuda-build/CUDA=11.5/7548/Build_20Metrics_20Report/ As an experiment, you can temporarily remove the word cudf/cpp/include/cudf/types.hpp Line 343 in 2c6b0da
|
done in d3dac36 |
This looks great: https://gpuci.gpuopenanalytics.com/job/rapidsai/job/gpuci/job/cudf/job/prb/job/cudf-cpu-cuda-build/CUDA=11.5/7552/Build_20Metrics_20Report/ |
PR is ready for review, but we'll wait to merge until all the other PRs are confirmed working as well. |
@gpucibot merge |
This PR replaces
ccache
withsccache
.