-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only add KaHyPar dependency to example if not Windows
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
using NamedGraphs | ||
using KaHyPar | ||
using Metis | ||
|
||
g = named_grid((4, 4)) | ||
npartitions = 4 | ||
|
||
pg_kahypar = PartitionedGraph(g; npartitions, backend="KaHyPar") | ||
pg_metis = PartitionedGraph(g; npartitions, backend="Metis") | ||
|
||
@show nv(partitioned_graph(pg_kahypar)) == nv(partitioned_graph(pg_metis)) == npartitions | ||
|
||
@show pg_kahypar isa PartitionedGraph | ||
@show pg_metis isa PartitionedGraph | ||
|
||
if !Sys.iswindows() | ||
using KaHyPar | ||
pg_kahypar = PartitionedGraph(g; npartitions, backend="KaHyPar") | ||
@show nv(partitioned_graph(pg_kahypar)) == nv(partitioned_graph(pg_metis)) == npartitions | ||
@show pg_kahypar isa PartitionedGraph | ||
end |