Skip to content

Commit

Permalink
remove unnecessary checks
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Nov 16, 2023
1 parent 345aee7 commit 0887af9
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions cpp/src/prims/update_edge_src_dst_property.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -866,8 +866,6 @@ void update_edge_src_property(
edge_src_property_output,
bool do_expensive_check = false)
{
CUGRAPH_EXPECTS(!graph_view.has_edge_mask(), "unimplemented.");

if (do_expensive_check) {
// currently, nothing to do
}
Expand Down Expand Up @@ -917,8 +915,6 @@ void update_edge_src_property(
edge_src_property_output,
bool do_expensive_check = false)
{
CUGRAPH_EXPECTS(!graph_view.has_edge_mask(), "unimplemented.");

if (do_expensive_check) {
auto num_invalids = thrust::count_if(
handle.get_thrust_policy(),
Expand Down Expand Up @@ -985,8 +981,6 @@ void update_edge_dst_property(
edge_dst_property_output,
bool do_expensive_check = false)
{
CUGRAPH_EXPECTS(!graph_view.has_edge_mask(), "unimplemented.");

if (do_expensive_check) {
// currently, nothing to do
}
Expand Down Expand Up @@ -1036,8 +1030,6 @@ void update_edge_dst_property(
edge_dst_property_output,
bool do_expensive_check = false)
{
CUGRAPH_EXPECTS(!graph_view.has_edge_mask(), "unimplemented.");

if (do_expensive_check) {
auto num_invalids = thrust::count_if(
handle.get_thrust_policy(),
Expand Down

0 comments on commit 0887af9

Please sign in to comment.