You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During a debug build, the following issues cropped up. All these are easily fixable. I think the first one may be fixable by the example of the previous function. I've noted that these are actually still in the repo versions.
Problem 1:
src/prims/vertex_frontier.cuh
in retrieve_vertex_list_from_bitmap()
line 227, no local scope comm or root variable declared as in function previous
Also typo in vertex_ragne_first, should be range
assert((comm.get_rank() != root) ||
(bitmap.size() >= packed_bool_size(vertex_range_last - vertex_ragne_first)));
Problem 2:
Typo in variable
/home/mcordery/Projects/cugraph/cpp/src/prims/detail/per_v_transform_reduce_e.cuh:1613:14: error: use of undeclared identifier 'sorted_uniue_nzd_key_last'; did you mean 'sorted_unique_nzd_key_last'?
1613 | assert(sorted_uniue_nzd_key_last == sorted_unique_key_first + (*key_segment_offsets).back());
Problem 3:
Typo in variable
/home/mcordery/Projects/cugraph/cpp/src/prims/fill_edge_src_dst_property.cuh:973:28: error: no member named 'local_edge_partition_dst_range_sizse' in 'cugraph::graph_view_t<int64_t, int64_t, false, false, void>'
973 | : graph_view.local_edge_partition_dst_range_sizse()));
Minimum reproducible example
Relevant log output
Environment details
Other/Misc.
No response
Code of Conduct
I agree to follow cuGraph's Code of Conduct
I have searched the open bugs and have found no duplicates for this bug report
The text was updated successfully, but these errors were encountered:
For a long time (a couple of years) we were unable to compile debug builds (OOM in the compiler). We have recently made changes in our C++ TUs that have made it possible... but we are out of the habit. These bugs are being corrected in 25.02.
Version
25.02
Which installation method(s) does this occur on?
Source
Describe the bug.
During a debug build, the following issues cropped up. All these are easily fixable. I think the first one may be fixable by the example of the previous function. I've noted that these are actually still in the repo versions.
Problem 1:
src/prims/vertex_frontier.cuh
in retrieve_vertex_list_from_bitmap()
line 227, no local scope comm or root variable declared as in function previous
Also typo in vertex_ragne_first, should be range
assert((comm.get_rank() != root) ||
(bitmap.size() >= packed_bool_size(vertex_range_last - vertex_ragne_first)));
Problem 2:
Typo in variable
/home/mcordery/Projects/cugraph/cpp/src/prims/detail/per_v_transform_reduce_e.cuh:1613:14: error: use of undeclared identifier 'sorted_uniue_nzd_key_last'; did you mean 'sorted_unique_nzd_key_last'?
1613 | assert(sorted_uniue_nzd_key_last == sorted_unique_key_first + (*key_segment_offsets).back());
Problem 3:
Typo in variable
/home/mcordery/Projects/cugraph/cpp/src/prims/fill_edge_src_dst_property.cuh:973:28: error: no member named 'local_edge_partition_dst_range_sizse' in 'cugraph::graph_view_t<int64_t, int64_t, false, false, void>'
973 | : graph_view.local_edge_partition_dst_range_sizse()));
Minimum reproducible example
Relevant log output
Environment details
Other/Misc.
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: