Skip to content

Commit 74ee215

Browse files
committed
Revert "[CTK 12.5]: Avoid another compiler issue with host device detection (rapidsai#4971)"
This reverts commit 6759645.
1 parent b2835f1 commit 74ee215

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

cpp/include/cugraph/edge_property.hpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ class edge_property_view_t {
5454

5555
// nvcc 12.5 sometimes deduces this as a host device function, just defining it fixes that
5656
~edge_property_view_t() {}
57-
edge_property_view_t(const edge_property_view_t&) = default;
58-
edge_property_view_t(edge_property_view_t&&) = default;
59-
edge_property_view_t& operator=(const edge_property_view_t&) = default;
60-
edge_property_view_t& operator=(edge_property_view_t&&) = default;
6157

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

@@ -117,13 +113,6 @@ class edge_property_t {
117113
{
118114
}
119115

120-
// nvcc 12.5 sometimes deduces this as a host device function, just defining it fixes that
121-
~edge_property_t() {}
122-
edge_property_t(const edge_property_t&) = delete;
123-
edge_property_t& operator=(const edge_property_t&) = delete;
124-
edge_property_t(edge_property_t&&) = default;
125-
edge_property_t& operator=(edge_property_t&&) = default;
126-
127116
void clear(raft::handle_t const& handle)
128117
{
129118
buffers_.clear();

0 commit comments

Comments
 (0)