Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
1.7 KiB

/*
* Copyright(C) 1999-2020, 2023 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* See packages/seacas/LICENSE for details
*/
#include "prototypes.h"
#include "structs.h"
#include <stdio.h> // for FILE
/* Print metrics of partition quality. */
void countup(struct vtx_data **graph, /* graph data structure */
int nvtxs, /* number of vtxs in graph */
int *assignment, /* set number of each vtx (length nvtxs+1) */
int ndims, /* number of cuts at each level */
int architecture, /* what's the target parallel machine? */
int ndims_tot, /* total number of hypercube dimensions */
int mesh_dims[3], /* extent of mesh in each dimension */
int print_lev, /* level of output */
FILE *outfile, /* output file if not NULL */
int using_ewgts /* are edge weights being used? */
)
{
extern int VERTEX_SEPARATOR; /* vertex instead of edge separator? */
extern int VERTEX_COVER; /* make/improve vtx separator via matching? */
if (VERTEX_SEPARATOR || VERTEX_COVER) {
countup_vtx_sep(graph, nvtxs, assignment);
}
else {
if (architecture == 0) {
countup_cube(graph, nvtxs, assignment, ndims, ndims_tot, print_lev, outfile, using_ewgts);
}
else if (architecture > 0) {
countup_mesh(graph, nvtxs, assignment, mesh_dims, print_lev, outfile, using_ewgts);
}
}
}