-
Notifications
You must be signed in to change notification settings - Fork 324
[DO NOT MERGE] Experiment to leverage CUDASTF #4833
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
base: branch-25.04
Are you sure you want to change the base?
Conversation
@@ -15,6 +15,13 @@ | |||
# This function finds CCCL and sets any additional necessary environment variables. | |||
function(find_and_configure_cccl) | |||
include(${rapids-cmake-dir}/cpm/cccl.cmake) | |||
include(${rapids-cmake-dir}/cpm/package_override.cmake) | |||
|
|||
rapids_cpm_package_override("${CMAKE_CURRENT_FUNCTION_LIST_DIR}/cccl_override.json") |
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.
This may be something we surround with some CUGRAPH_USE_STF option for example
/ok to test |
/okay to test |
cpp/tests/utilities/check_utilities.hpp: In member function ‘bool cugraph::test::device_nearly_equal<type_t>::operator()(type_t, type_t) const’: cpp/tests/utilities/check_utilities.hpp:98:20: error: ‘max’ is not a member of ‘thrust’ 98 | thrust::max(thrust::max(lhs, rhs) * threshold_ratio, threshold_magnitude); | ^~~
instantiate using lambda functions. These lambda functions may have capture lists so that there is no default constructor, and we cannot call the default constructor of this operator.
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
@@ -19,6 +19,7 @@ | |||
|
|||
#include <raft/core/handle.hpp> | |||
#include <raft/core/span.hpp> | |||
#include <thrust/extrema.h> |
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.
remove ?
This is intended to explore how we can use CUDASTF within cuGraph