Skip to content

Commit

Permalink
Mark all new cugraph CUDA kernels with internal linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Mar 11, 2024
1 parent 8770d42 commit 28e6e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/prims/per_v_random_select_transform_outgoing_e.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ struct return_value_compute_offset_t {
};

template <typename vertex_t, typename edge_t, bool multi_gpu>
__global__ void compute_valid_local_nbr_inclusive_sums_mid_local_degree(
__global__ static void compute_valid_local_nbr_inclusive_sums_mid_local_degree(
edge_partition_device_view_t<vertex_t, edge_t, multi_gpu> edge_partition,
edge_partition_edge_property_device_view_t<edge_t, uint32_t const*, bool> edge_partition_e_mask,
raft::device_span<vertex_t const> edge_partition_frontier_majors,
Expand Down Expand Up @@ -382,7 +382,7 @@ __global__ void compute_valid_local_nbr_inclusive_sums_mid_local_degree(
}

template <typename vertex_t, typename edge_t, bool multi_gpu>
__global__ void compute_valid_local_nbr_inclusive_sums_high_local_degree(
__global__ static void compute_valid_local_nbr_inclusive_sums_high_local_degree(
edge_partition_device_view_t<vertex_t, edge_t, multi_gpu> edge_partition,
edge_partition_edge_property_device_view_t<edge_t, uint32_t const*, bool> edge_partition_e_mask,
raft::device_span<vertex_t const> edge_partition_frontier_majors,
Expand Down

0 comments on commit 28e6e8b

Please sign in to comment.