mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
@ -0,0 +1,402 @@
|
||||
/*
|
||||
* Copyright 1997, Regents of the University of Minnesota
|
||||
*
|
||||
* mpmetis.c
|
||||
*
|
||||
* This file contains the top level routines for the multilevel recursive
|
||||
* bisection algorithm PMETIS.
|
||||
*
|
||||
* Started 7/24/97
|
||||
* George
|
||||
*
|
||||
* $Id: mpmetis.c,v 1.2 2002/08/10 06:29:33 karypis Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
#include <metislib.h>
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function is the entry point for PWMETIS that accepts exact weights
|
||||
* for the target partitions
|
||||
**************************************************************************/
|
||||
void METIS_mCPartGraphRecursive(idxtype *nvtxs, idxtype *ncon, idxtype *xadj, idxtype *adjncy,
|
||||
idxtype *vwgt, idxtype *adjwgt, idxtype *wgtflag, idxtype *numflag, idxtype *nparts,
|
||||
idxtype *options, idxtype *edgecut, idxtype *part)
|
||||
{
|
||||
idxtype i, j;
|
||||
GraphType graph;
|
||||
CtrlType ctrl;
|
||||
|
||||
if (*numflag == 1)
|
||||
Change2CNumbering(*nvtxs, xadj, adjncy);
|
||||
|
||||
SetUpGraph(&graph, OP_PMETIS, *nvtxs, *ncon, xadj, adjncy, vwgt, adjwgt, *wgtflag);
|
||||
|
||||
if (options[0] == 0) { /* Use the default parameters */
|
||||
ctrl.CType = McPMETIS_CTYPE;
|
||||
ctrl.IType = McPMETIS_ITYPE;
|
||||
ctrl.RType = McPMETIS_RTYPE;
|
||||
ctrl.dbglvl = McPMETIS_DBGLVL;
|
||||
}
|
||||
else {
|
||||
ctrl.CType = options[OPTION_CTYPE];
|
||||
ctrl.IType = options[OPTION_ITYPE];
|
||||
ctrl.RType = options[OPTION_RTYPE];
|
||||
ctrl.dbglvl = options[OPTION_DBGLVL];
|
||||
}
|
||||
ctrl.optype = OP_PMETIS;
|
||||
ctrl.CoarsenTo = 100;
|
||||
|
||||
ctrl.nmaxvwgt = 1.5/(1.0*ctrl.CoarsenTo);
|
||||
|
||||
InitRandom(-1);
|
||||
|
||||
AllocateWorkSpace(&ctrl, &graph, *nparts);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, InitTimers(&ctrl));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_startcputimer(ctrl.TotalTmr));
|
||||
|
||||
*edgecut = MCMlevelRecursiveBisection(&ctrl, &graph, *nparts, part, 1.000, 0);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_stopcputimer(ctrl.TotalTmr));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, PrintTimers(&ctrl));
|
||||
|
||||
FreeWorkSpace(&ctrl, &graph);
|
||||
|
||||
if (*numflag == 1)
|
||||
Change2FNumbering(*nvtxs, xadj, adjncy, part);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function is the entry point for PWMETIS that accepts exact weights
|
||||
* for the target partitions
|
||||
**************************************************************************/
|
||||
void METIS_mCHPartGraphRecursive(idxtype *nvtxs, idxtype *ncon, idxtype *xadj, idxtype *adjncy,
|
||||
idxtype *vwgt, idxtype *adjwgt, idxtype *wgtflag, idxtype *numflag, idxtype *nparts,
|
||||
float *ubvec, idxtype *options, idxtype *edgecut, idxtype *part)
|
||||
{
|
||||
idxtype i, j;
|
||||
GraphType graph;
|
||||
CtrlType ctrl;
|
||||
float *myubvec;
|
||||
|
||||
if (*numflag == 1)
|
||||
Change2CNumbering(*nvtxs, xadj, adjncy);
|
||||
|
||||
SetUpGraph(&graph, OP_PMETIS, *nvtxs, *ncon, xadj, adjncy, vwgt, adjwgt, *wgtflag);
|
||||
|
||||
if (options[0] == 0) { /* Use the default parameters */
|
||||
ctrl.CType = PMETIS_CTYPE;
|
||||
ctrl.IType = PMETIS_ITYPE;
|
||||
ctrl.RType = PMETIS_RTYPE;
|
||||
ctrl.dbglvl = PMETIS_DBGLVL;
|
||||
}
|
||||
else {
|
||||
ctrl.CType = options[OPTION_CTYPE];
|
||||
ctrl.IType = options[OPTION_ITYPE];
|
||||
ctrl.RType = options[OPTION_RTYPE];
|
||||
ctrl.dbglvl = options[OPTION_DBGLVL];
|
||||
}
|
||||
ctrl.optype = OP_PMETIS;
|
||||
ctrl.CoarsenTo = 100;
|
||||
|
||||
ctrl.nmaxvwgt = 1.5/(1.0*ctrl.CoarsenTo);
|
||||
|
||||
myubvec = gk_fmalloc(*ncon, "PWMETIS: mytpwgts");
|
||||
gk_fcopy(*ncon, ubvec, myubvec);
|
||||
|
||||
InitRandom(-1);
|
||||
|
||||
AllocateWorkSpace(&ctrl, &graph, *nparts);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, InitTimers(&ctrl));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_startcputimer(ctrl.TotalTmr));
|
||||
|
||||
*edgecut = MCHMlevelRecursiveBisection(&ctrl, &graph, *nparts, part, myubvec, 0);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_stopcputimer(ctrl.TotalTmr));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, PrintTimers(&ctrl));
|
||||
|
||||
FreeWorkSpace(&ctrl, &graph);
|
||||
gk_free((void **)&myubvec, LTERM);
|
||||
|
||||
if (*numflag == 1)
|
||||
Change2FNumbering(*nvtxs, xadj, adjncy, part);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function is the entry point for PWMETIS that accepts exact weights
|
||||
* for the target partitions
|
||||
**************************************************************************/
|
||||
void METIS_mCPartGraphRecursiveInternal(idxtype *nvtxs, idxtype *ncon, idxtype *xadj, idxtype *adjncy,
|
||||
float *nvwgt, idxtype *adjwgt, idxtype *nparts, idxtype *options, idxtype *edgecut, idxtype *part)
|
||||
{
|
||||
idxtype i, j;
|
||||
GraphType graph;
|
||||
CtrlType ctrl;
|
||||
|
||||
SetUpGraph2(&graph, *nvtxs, *ncon, xadj, adjncy, nvwgt, adjwgt);
|
||||
|
||||
if (options[0] == 0) { /* Use the default parameters */
|
||||
ctrl.CType = PMETIS_CTYPE;
|
||||
ctrl.IType = PMETIS_ITYPE;
|
||||
ctrl.RType = PMETIS_RTYPE;
|
||||
ctrl.dbglvl = PMETIS_DBGLVL;
|
||||
}
|
||||
else {
|
||||
ctrl.CType = options[OPTION_CTYPE];
|
||||
ctrl.IType = options[OPTION_ITYPE];
|
||||
ctrl.RType = options[OPTION_RTYPE];
|
||||
ctrl.dbglvl = options[OPTION_DBGLVL];
|
||||
}
|
||||
ctrl.optype = OP_PMETIS;
|
||||
ctrl.CoarsenTo = 100;
|
||||
|
||||
ctrl.nmaxvwgt = 1.5/(1.0*ctrl.CoarsenTo);
|
||||
|
||||
InitRandom(-1);
|
||||
|
||||
AllocateWorkSpace(&ctrl, &graph, *nparts);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, InitTimers(&ctrl));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_startcputimer(ctrl.TotalTmr));
|
||||
|
||||
*edgecut = MCMlevelRecursiveBisection(&ctrl, &graph, *nparts, part, 1.000, 0);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_stopcputimer(ctrl.TotalTmr));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, PrintTimers(&ctrl));
|
||||
|
||||
FreeWorkSpace(&ctrl, &graph);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function is the entry point for PWMETIS that accepts exact weights
|
||||
* for the target partitions
|
||||
**************************************************************************/
|
||||
void METIS_mCHPartGraphRecursiveInternal(idxtype *nvtxs, idxtype *ncon, idxtype *xadj, idxtype *adjncy,
|
||||
float *nvwgt, idxtype *adjwgt, idxtype *nparts, float *ubvec, idxtype *options, idxtype *edgecut,
|
||||
idxtype *part)
|
||||
{
|
||||
idxtype i, j;
|
||||
GraphType graph;
|
||||
CtrlType ctrl;
|
||||
float *myubvec;
|
||||
|
||||
SetUpGraph2(&graph, *nvtxs, *ncon, xadj, adjncy, nvwgt, adjwgt);
|
||||
|
||||
if (options[0] == 0) { /* Use the default parameters */
|
||||
ctrl.CType = PMETIS_CTYPE;
|
||||
ctrl.IType = PMETIS_ITYPE;
|
||||
ctrl.RType = PMETIS_RTYPE;
|
||||
ctrl.dbglvl = PMETIS_DBGLVL;
|
||||
}
|
||||
else {
|
||||
ctrl.CType = options[OPTION_CTYPE];
|
||||
ctrl.IType = options[OPTION_ITYPE];
|
||||
ctrl.RType = options[OPTION_RTYPE];
|
||||
ctrl.dbglvl = options[OPTION_DBGLVL];
|
||||
}
|
||||
ctrl.optype = OP_PMETIS;
|
||||
ctrl.CoarsenTo = 100;
|
||||
|
||||
ctrl.nmaxvwgt = 1.5/(1.0*ctrl.CoarsenTo);
|
||||
|
||||
myubvec = gk_fmalloc(*ncon, "PWMETIS: mytpwgts");
|
||||
gk_fcopy(*ncon, ubvec, myubvec);
|
||||
|
||||
InitRandom(-1);
|
||||
|
||||
AllocateWorkSpace(&ctrl, &graph, *nparts);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, InitTimers(&ctrl));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_startcputimer(ctrl.TotalTmr));
|
||||
|
||||
*edgecut = MCHMlevelRecursiveBisection(&ctrl, &graph, *nparts, part, myubvec, 0);
|
||||
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, gk_stopcputimer(ctrl.TotalTmr));
|
||||
IFSET(ctrl.dbglvl, DBG_TIME, PrintTimers(&ctrl));
|
||||
|
||||
FreeWorkSpace(&ctrl, &graph);
|
||||
gk_free((void **)&myubvec, LTERM);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function takes a graph and produces a bisection of it
|
||||
**************************************************************************/
|
||||
idxtype MCMlevelRecursiveBisection(CtrlType *ctrl, GraphType *graph, idxtype nparts, idxtype *part,
|
||||
float ubfactor, idxtype fpart)
|
||||
{
|
||||
idxtype i, j, nvtxs, ncon, cut;
|
||||
idxtype *label, *where;
|
||||
GraphType lgraph, rgraph;
|
||||
float tpwgts[2];
|
||||
|
||||
nvtxs = graph->nvtxs;
|
||||
if (nvtxs == 0) {
|
||||
mprintf("\t***Cannot bisect a graph with 0 vertices!\n\t***You are trying to partition a graph into too many parts!\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Determine the weights of the partitions */
|
||||
tpwgts[0] = 1.0*(nparts>>1)/(1.0*nparts);
|
||||
tpwgts[1] = 1.0 - tpwgts[0];
|
||||
|
||||
MCMlevelEdgeBisection(ctrl, graph, tpwgts, ubfactor);
|
||||
cut = graph->mincut;
|
||||
|
||||
label = graph->label;
|
||||
where = graph->where;
|
||||
for (i=0; i<nvtxs; i++)
|
||||
part[label[i]] = where[i] + fpart;
|
||||
|
||||
if (nparts > 2)
|
||||
SplitGraphPart(ctrl, graph, &lgraph, &rgraph);
|
||||
|
||||
/* Free the memory of the top level graph */
|
||||
FreeGraph(graph, 0);
|
||||
|
||||
|
||||
/* Do the recursive call */
|
||||
if (nparts > 3) {
|
||||
cut += MCMlevelRecursiveBisection(ctrl, &lgraph, nparts/2, part, ubfactor, fpart);
|
||||
cut += MCMlevelRecursiveBisection(ctrl, &rgraph, nparts-nparts/2, part, ubfactor, fpart+nparts/2);
|
||||
}
|
||||
else if (nparts == 3) {
|
||||
cut += MCMlevelRecursiveBisection(ctrl, &rgraph, nparts-nparts/2, part, ubfactor, fpart+nparts/2);
|
||||
FreeGraph(&lgraph, 0);
|
||||
}
|
||||
|
||||
return cut;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function takes a graph and produces a bisection of it
|
||||
**************************************************************************/
|
||||
idxtype MCHMlevelRecursiveBisection(CtrlType *ctrl, GraphType *graph, idxtype nparts, idxtype *part,
|
||||
float *ubvec, idxtype fpart)
|
||||
{
|
||||
idxtype i, j, nvtxs, ncon, cut;
|
||||
idxtype *label, *where;
|
||||
GraphType lgraph, rgraph;
|
||||
float tpwgts[2], *npwgts, *lubvec, *rubvec;
|
||||
|
||||
lubvec = rubvec = NULL;
|
||||
|
||||
nvtxs = graph->nvtxs;
|
||||
ncon = graph->ncon;
|
||||
if (nvtxs == 0) {
|
||||
mprintf("\t***Cannot bisect a graph with 0 vertices!\n\t***You are trying to partition a graph into too many parts!\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Determine the weights of the partitions */
|
||||
tpwgts[0] = 1.0*(nparts>>1)/(1.0*nparts);
|
||||
tpwgts[1] = 1.0 - tpwgts[0];
|
||||
|
||||
/* For now, relax at the coarsest level only */
|
||||
if (nparts == 2)
|
||||
MCHMlevelEdgeBisection(ctrl, graph, tpwgts, ubvec);
|
||||
else
|
||||
MCMlevelEdgeBisection(ctrl, graph, tpwgts, 1.000);
|
||||
cut = graph->mincut;
|
||||
|
||||
label = graph->label;
|
||||
where = graph->where;
|
||||
for (i=0; i<nvtxs; i++)
|
||||
part[label[i]] = where[i] + fpart;
|
||||
|
||||
if (nparts > 2) {
|
||||
/* Adjust the ubvecs before the split */
|
||||
npwgts = graph->npwgts;
|
||||
lubvec = gk_fmalloc(ncon, "MCHMlevelRecursiveBisection");
|
||||
rubvec = gk_fmalloc(ncon, "MCHMlevelRecursiveBisection");
|
||||
|
||||
for (i=0; i<ncon; i++) {
|
||||
lubvec[i] = ubvec[i]*tpwgts[0]/npwgts[i];
|
||||
lubvec[i] = amax(lubvec[i], 1.01);
|
||||
|
||||
rubvec[i] = ubvec[i]*tpwgts[1]/npwgts[ncon+i];
|
||||
rubvec[i] = amax(rubvec[i], 1.01);
|
||||
}
|
||||
|
||||
SplitGraphPart(ctrl, graph, &lgraph, &rgraph);
|
||||
}
|
||||
|
||||
/* Free the memory of the top level graph */
|
||||
FreeGraph(graph, 0);
|
||||
|
||||
|
||||
/* Do the recursive call */
|
||||
if (nparts > 3) {
|
||||
cut += MCHMlevelRecursiveBisection(ctrl, &lgraph, nparts/2, part, lubvec, fpart);
|
||||
cut += MCHMlevelRecursiveBisection(ctrl, &rgraph, nparts-nparts/2, part, rubvec, fpart+nparts/2);
|
||||
}
|
||||
else if (nparts == 3) {
|
||||
cut += MCHMlevelRecursiveBisection(ctrl, &rgraph, nparts-nparts/2, part, rubvec, fpart+nparts/2);
|
||||
FreeGraph(&lgraph, 0);
|
||||
}
|
||||
|
||||
gk_free((void **)&lubvec, &rubvec, LTERM);
|
||||
|
||||
return cut;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function performs multilevel bisection
|
||||
**************************************************************************/
|
||||
void MCMlevelEdgeBisection(CtrlType *ctrl, GraphType *graph, float *tpwgts, float ubfactor)
|
||||
{
|
||||
GraphType *cgraph;
|
||||
|
||||
cgraph = MCCoarsen2Way(ctrl, graph);
|
||||
|
||||
MocInit2WayPartition(ctrl, cgraph, tpwgts, ubfactor);
|
||||
|
||||
MocRefine2Way(ctrl, graph, cgraph, tpwgts, ubfactor);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* This function performs multilevel bisection
|
||||
**************************************************************************/
|
||||
void MCHMlevelEdgeBisection(CtrlType *ctrl, GraphType *graph, float *tpwgts, float *ubvec)
|
||||
{
|
||||
idxtype i;
|
||||
GraphType *cgraph;
|
||||
|
||||
/*
|
||||
for (i=0; i<graph->ncon; i++)
|
||||
mprintf("%.4f ", ubvec[i]);
|
||||
mprintf("\n");
|
||||
*/
|
||||
|
||||
cgraph = MCCoarsen2Way(ctrl, graph);
|
||||
|
||||
MocInit2WayPartition2(ctrl, cgraph, tpwgts, ubvec);
|
||||
|
||||
MocRefine2Way2(ctrl, graph, cgraph, tpwgts, ubvec);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user