Skip to content
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

Forward-merge branch-25.04 into branch-25.06 #4992

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions cpp/include/cugraph/edge_property.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,6 @@ class edge_property_view_t {
{
}

// nvcc 12.5 sometimes deduces this as a host device function, just defining it fixes that
~edge_property_view_t() {}
edge_property_view_t(const edge_property_view_t&) = default;
edge_property_view_t(edge_property_view_t&&) = default;
edge_property_view_t& operator=(const edge_property_view_t&) = default;
edge_property_view_t& operator=(edge_property_view_t&&) = default;

std::vector<ValueIterator> const& value_firsts() const { return edge_partition_value_firsts_; }

std::vector<edge_t> const& edge_counts() const { return edge_partition_edge_counts_; }
Expand Down Expand Up @@ -117,13 +110,6 @@ class edge_property_t {
{
}

// nvcc 12.5 sometimes deduces this as a host device function, just defining it fixes that
~edge_property_t() {}
edge_property_t(const edge_property_t&) = delete;
edge_property_t& operator=(const edge_property_t&) = delete;
edge_property_t(edge_property_t&&) = default;
edge_property_t& operator=(edge_property_t&&) = default;

void clear(raft::handle_t const& handle)
{
buffers_.clear();
Expand Down
Loading