-
Notifications
You must be signed in to change notification settings - Fork 97
GRAPH
brian-kelley edited this page Jun 24, 2020
·
7 revisions
These algorithms provide generic graph coloring capabilities used by Gauss-Seidel, multigrid aggregation, etc... We distinguish to main categories of algorithms, distance 1 coloring and distance 2 coloring. We also provide a coloring handle that allows users to easily control the behavior of the algorithms.
The graph coloring handle is extending the KokkosKernels handle to provide options that are specific to coloring algorithms.
Distance 1 coloring algorithms will ensure that each node has a different color than all of its neighbors.
Distance 2 coloring algorithms will ensure that each node has a different color than its neighbors and its neighbors' neighbors.