-
Notifications
You must be signed in to change notification settings - Fork 154
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
Refactor calls to data_array_view
#871
Refactor calls to data_array_view
#871
Conversation
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.
Needs some spill lock acquisition I think.
Codecov ReportBase: 92.55% // Head: 92.58% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-23.02 #871 +/- ##
================================================
+ Coverage 92.55% 92.58% +0.02%
================================================
Files 24 24
Lines 1008 1011 +3
================================================
+ Hits 933 936 +3
Misses 75 75
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
ci/build_cpp.sh
Outdated
@@ -7,10 +7,14 @@ source rapids-env-update | |||
|
|||
export CMAKE_GENERATOR=Ninja | |||
|
|||
LIBCUDF_CHANNEL=$(rapids-get-artifact ci/cudf/pull-request/12587/046025a/cudf_conda_cpp_cuda11_$(arch).tar.gz) |
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.
Temporary changes, will be reverted in few hours
ci/build_python.sh
Outdated
@@ -12,12 +12,18 @@ rapids-print-env | |||
rapids-logger "Begin py build" | |||
|
|||
CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) | |||
PY_VER=${RAPIDS_PY_VERSION//./} |
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.
Temporary changes, will be reverted in few hours
ci/test_python.sh
Outdated
@@ -21,6 +21,9 @@ set -u | |||
rapids-logger "Downloading artifacts from previous jobs" | |||
CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) | |||
PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) | |||
PY_VER=${RAPIDS_PY_VERSION//./} |
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.
Temporary changes, will be reverted in few hours
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.
Pending on a few temporary changes + 1 question.
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!
/merge |
Description
This PR adapts to the breaking changes being introduced in: rapidsai/cudf#12587
Checklist