Skip to content

Commit

Permalink
remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Sep 30, 2024
1 parent c01f4e4 commit dabd0c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def heterogeneous_biased_neighbor_sample(ResourceHandle resource_handle,
cdef cugraph_error_t* error_ptr
cdef uintptr_t ai_fan_out_ptr

# FIXME: refactor the way we are creating pointer. Can use a single helper function to create **************
# FIXME: refactor the way we are creating pointer. Can use a single helper function to create

assert_CAI_type(start_vertex_list, "start_vertex_list")
assert_CAI_type(start_vertex_offsets, "start_vertex_offsets", True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def heterogeneous_uniform_neighbor_sample(ResourceHandle resource_handle,
cdef cugraph_error_t* error_ptr
cdef uintptr_t ai_fan_out_ptr

# FIXME: refactor the way we are creating pointer. Can use a single helper function to create **************
# FIXME: refactor the way we are creating pointer. Can use a single helper function to create

assert_CAI_type(start_vertex_list, "start_vertex_list")
assert_CAI_type(start_vertex_offsets, "start_vertex_offsets", True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def homogeneous_biased_neighbor_sample(ResourceHandle resource_handle,
start_vertex_list,
start_vertex_offsets,
h_fan_out,
num_edge_types,
bool_t with_replacement,
bool_t do_expensive_check,
with_edge_properties=False,
Expand Down Expand Up @@ -216,7 +215,7 @@ def homogeneous_biased_neighbor_sample(ResourceHandle resource_handle,
cdef cugraph_error_t* error_ptr
cdef uintptr_t ai_fan_out_ptr

# FIXME: refactor the way we are creating pointer. Can use a single helper function to create **************
# FIXME: refactor the way we are creating pointer. Can use a single helper function to create

assert_CAI_type(start_vertex_list, "start_vertex_list")
assert_CAI_type(start_vertex_offsets, "start_vertex_offsets", True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def homogeneous_uniform_neighbor_sample(ResourceHandle resource_handle,
start_vertex_list,
start_vertex_offsets,
h_fan_out,
num_edge_types,
bool_t with_replacement,
bool_t do_expensive_check,
with_edge_properties=False,
Expand Down Expand Up @@ -210,7 +209,7 @@ def homogeneous_uniform_neighbor_sample(ResourceHandle resource_handle,
cdef cugraph_error_t* error_ptr
cdef uintptr_t ai_fan_out_ptr

# FIXME: refactor the way we are creating pointer. Can use a single helper function to create **************
# FIXME: refactor the way we are creating pointer. Can use a single helper function to create

assert_CAI_type(start_vertex_list, "start_vertex_list")
assert_CAI_type(start_vertex_offsets, "start_vertex_offsets", True)
Expand Down

0 comments on commit dabd0c8

Please sign in to comment.