KMETIS is a C program which partitions the nodes of a graph using the METIS library.
Typically, the graph is being partitioned so that a computational task can be correspondingly divided up among a number of processors for parallel computing. Thus, it is important that each part of the partition have roughly the same number of elements, and that "connections" between distinct partitions be limited, as much as possible, to reduce the amount of interprocess communication necessary.
KMETIS uses k-way partitioning, and is best when the number of parts is more than 8. The related program PMETIS uses multilevel recursive bisection and is best when the number of parts is 8 or less.
KMETIS uses particular formats for storing the graph, mesh or matrix data. The formats have extended to include the ability to weight certain items.
KMETIS can be executed on a single processor. However, KMETIS includes an MPI interface which allows it to be run in parallel as well.
To partition the nodes of a graph, minimizing the number of edge cuts:
GRAPHCHK is a C program which can read a METIS GRAPH file and verify that it has the proper format.
MESH2DUAL is a C program which converts a finite element mesh to a graph, for further processing by KMETIS or PMETIS.
MESH2NODAL is a C program which converts a finite element mesh to a graph, for further processing by KMETIS or PMETIS.
METIS is a C library which is used by KMETIS.
METIS_GRAPH is a data directory which contains examples of the graph files used to describe a graph to the METIS family of programs.
MPI is a message passing interface that allows programs to be written for execution on parallel computers.
NEIGHBORS_TO_METIS_GRAPH is a FORTRAN90 program which reads information describing the adjacency relations in a tet mesh, and writes out essentially the same information, but in a format that METIS will accept.
OEMETIS is a C program which reads the adjacency graph of a sparse matrix, stored in METIS GRAPH format, and produces a reordering of the nodes to minimize fill.
ONMETIS is a C program which reads the adjacency graph of a sparse matrix, stored in METIS GRAPH format, and produces a reordering of the nodes to minimize fill.
PARTDMESH is a C program, using METIS, which can partition the elements of a finite element mesh, by working with the dual graph of the mesh.
PARTNMESH is a C program, using METIS, which can partition the elements of a finite element mesh, by working with the nodal graph of the mesh.
PETSC is a library of high level mathematical software for the analysis of partial differential equations on parallel systems. PETSC supports and works with the METIS package.
PMETIS is an executable C program which is an alternative program to KMETIS.
P18 is a dumbbell-shaped region with a uniform mesh created by DISTMESH. There are some intermediate files, not given here, required to convert the triangle file into a METIS graph file.
P18_NONUNIFORM is a dumbbell-shaped region with a nonuniform mesh created by DISTMESH. There are some intermediate files, not given here, required to convert the triangle file into a METIS graph file.
You can go up one level to the C source codes.