- new faDecompose and faReconstruct libraries - provide common readFields in the faDecompose library
35 lines
846 B
Bash
Executable File
35 lines
846 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/AllwmakeParseArguments
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/have_kahip
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/have_metis
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/have_scotch
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
: ${FOAM_EXT_LIBBIN:=/usr/lib$WM_COMPILER_LIB_ARCH} # Extra safety?
|
|
export FOAM_EXT_LIBBIN
|
|
|
|
wmake $targetType decompositionMethods
|
|
wmake $targetType decompose
|
|
wmake $targetType faDecompose
|
|
|
|
if have_kahip
|
|
then
|
|
wmake $targetType kahipDecomp
|
|
fi
|
|
|
|
if have_metis
|
|
then
|
|
wmake $targetType metisDecomp
|
|
fi
|
|
|
|
if have_scotch
|
|
then
|
|
wmake $targetType scotchDecomp
|
|
fi
|
|
|
|
./Allwmake-mpi $targetType $*
|
|
|
|
#------------------------------------------------------------------------------
|