Skip to content

Commit

Permalink
Merge pull request #9183 from brian-kelley/FixKKNoETI
Browse files Browse the repository at this point in the history
KokkosKernels: fix name lookup issue in non-ETI build
  • Loading branch information
brian-kelley authored May 28, 2021
2 parents f47cea9 + 67a5e7b commit c3d50f9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void graph_color_distance2(
InternalEntries rowentries_internal(row_entries.data(), nnz);
auto gch_d2 = handle->get_distance2_graph_coloring_handle();
//note: last template argument 'false' means do distance-2, not bipartite
Impl::GraphColorDistance2
KokkosGraph::Impl::GraphColorDistance2
<typename KernelHandle::GraphColorDistance2HandleType, InternalRowmap, InternalEntries, false>
gc(num_verts, num_verts, rowmap_internal, rowentries_internal, rowmap_internal, rowentries_internal, gch_d2);
gc.compute_distance2_color();
Expand Down Expand Up @@ -174,7 +174,7 @@ void bipartite_color_rows(
}
auto gch_d2 = handle->get_distance2_graph_coloring_handle();
//note: last template argument 'true' means do bipartite one-sided
Impl::GraphColorDistance2
KokkosGraph::Impl::GraphColorDistance2
<typename KernelHandle::GraphColorDistance2HandleType, InternalRowmap, InternalEntries, true>
gc(num_rows, num_columns, rowmap_internal, rowentries_internal, colmap_internal, colentries_internal, gch_d2);
gc.compute_distance2_color();
Expand Down Expand Up @@ -237,7 +237,7 @@ void bipartite_color_columns(
InternalEntries rowentries_internal(row_entries.data(), nnz);
auto gch_d2 = handle->get_distance2_graph_coloring_handle();
//note: last template argument 'true' means do bipartite one-sided
Impl::GraphColorDistance2
KokkosGraph::Impl::GraphColorDistance2
<typename KernelHandle::GraphColorDistance2HandleType, InternalRowmap, InternalEntries, true>
gc(num_columns, num_rows, colmap_internal, colentries_internal, rowmap_internal, rowentries_internal, gch_d2);
gc.compute_distance2_color();
Expand Down

0 comments on commit c3d50f9

Please sign in to comment.