mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: have dummy versions for thirdparty libraries
The dummyThirdParty tree builds libraries which are drop-in (but non-functional) versions of some thirdparty libraries. This will make it easier to ship binary versions without having to ship thirdparty packs.
This commit is contained in:
@ -8,5 +8,4 @@ EXE_LIBS = \
|
|||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-ldecompositionMethods \
|
-ldecompositionMethods \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-ldynamicMesh \
|
-ldynamicMesh
|
||||||
-L$(FOAM_MPI_LIBBIN) -lparMetisDecompositionMethod
|
|
||||||
|
|||||||
@ -28,6 +28,8 @@ wmake libso surfMesh
|
|||||||
wmake libso triSurface
|
wmake libso triSurface
|
||||||
|
|
||||||
# Decomposition methods needed by meshTools
|
# Decomposition methods needed by meshTools
|
||||||
|
parallel/AllwmakeLnInclude
|
||||||
|
dummyThirdParty/Allwmake
|
||||||
wmake libso parallel/decompositionMethods
|
wmake libso parallel/decompositionMethods
|
||||||
wmake libso parallel/metisDecomp
|
wmake libso parallel/metisDecomp
|
||||||
|
|
||||||
|
|||||||
11
src/dummyThirdParty/Allwmake
vendored
Executable file
11
src/dummyThirdParty/Allwmake
vendored
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
|
set -x
|
||||||
|
|
||||||
|
wmake libso scotchDecomp
|
||||||
|
wmake libso metisDecomp
|
||||||
|
wmake libso parMetisDecomp
|
||||||
|
wmake libso MGridGen
|
||||||
|
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------- end-of-file
|
||||||
3
src/dummyThirdParty/MGridGen/Make/files
vendored
Normal file
3
src/dummyThirdParty/MGridGen/Make/files
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dummyMGridGen.C
|
||||||
|
|
||||||
|
LIB = $(FOAM_LIBBIN)/dummy/libMGridGen
|
||||||
3
src/dummyThirdParty/MGridGen/Make/options
vendored
Normal file
3
src/dummyThirdParty/MGridGen/Make/options
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
EXE_INC =
|
||||||
|
|
||||||
|
EXE_LIBS =
|
||||||
59
src/dummyThirdParty/MGridGen/dummyMGridGen.C
vendored
Normal file
59
src/dummyThirdParty/MGridGen/dummyMGridGen.C
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
//extern "C"
|
||||||
|
//{
|
||||||
|
#include "mgridgen.h"
|
||||||
|
//}
|
||||||
|
|
||||||
|
#include "error.H"
|
||||||
|
|
||||||
|
using namespace Foam;
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
static const char* notImplementedMessage =
|
||||||
|
"You are trying to use MGridGen but do not have the MGridGen library loaded.\n"
|
||||||
|
"This message is from the dummy MGridGen stub library instead.\n"
|
||||||
|
"\n"
|
||||||
|
"Normally the MGridGen library will be loaded through the LD_LIBRARY_PATH\n"
|
||||||
|
"environment variable but you are picking up this dummy library from the\n"
|
||||||
|
"$FOAM_LIBBIN/dummy directory. Please install MGridGen and make sure the\n"
|
||||||
|
"libMGridGen.so is in your LD_LIBRARY_PATH.";
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
#endif
|
||||||
|
void MGridGen(int, idxtype *, realtype *, realtype *, idxtype *, realtype *,
|
||||||
|
int, int, int *, int *, int *, idxtype *)
|
||||||
|
{
|
||||||
|
FatalErrorIn("MGridGen(..)")
|
||||||
|
<< notImplementedMessage
|
||||||
|
<< Foam::exit(Foam::FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
64
src/dummyThirdParty/MGridGen/mgridgen.h
vendored
Normal file
64
src/dummyThirdParty/MGridGen/mgridgen.h
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
Namespace
|
||||||
|
C linkage
|
||||||
|
|
||||||
|
Description
|
||||||
|
Dummy stub for mgridgen library functions.
|
||||||
|
Only implements the absolute minimum we are using.
|
||||||
|
|
||||||
|
SourceFiles
|
||||||
|
dummyMGridGen.C
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifndef mgridgen_H
|
||||||
|
#define mgridgen_H
|
||||||
|
|
||||||
|
#include "scalar.H"
|
||||||
|
|
||||||
|
#ifndef idxtype
|
||||||
|
#define idxtype int
|
||||||
|
#define realtype Foam::scalar
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
Class metis Declaration
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
#endif
|
||||||
|
void MGridGen(int, idxtype *, realtype *, realtype *, idxtype *, realtype *,
|
||||||
|
int, int, int *, int *, int *, idxtype *);
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
3
src/dummyThirdParty/metisDecomp/Make/files
vendored
Normal file
3
src/dummyThirdParty/metisDecomp/Make/files
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dummyMetisDecomp.C
|
||||||
|
|
||||||
|
LIB = $(FOAM_LIBBIN)/dummy/libmetisDecomp
|
||||||
5
src/dummyThirdParty/metisDecomp/Make/options
vendored
Normal file
5
src/dummyThirdParty/metisDecomp/Make/options
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
EXE_INC = \
|
||||||
|
-I$(FOAM_SRC)/parallel/decompositionMethods/lnInclude \
|
||||||
|
-I$(FOAM_SRC)/parallel/metisDecomp/lnInclude
|
||||||
|
|
||||||
|
LIB_LIBS =
|
||||||
156
src/dummyThirdParty/metisDecomp/dummyMetisDecomp.C
vendored
Normal file
156
src/dummyThirdParty/metisDecomp/dummyMetisDecomp.C
vendored
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include "metisDecomp.H"
|
||||||
|
#include "addToRunTimeSelectionTable.H"
|
||||||
|
#include "Time.H"
|
||||||
|
|
||||||
|
static const char* notImplementedMessage =
|
||||||
|
"You are trying to use metis but do not have the metisDecomp library loaded."
|
||||||
|
"\nThis message is from the dummy metisDecomp stub library instead.\n"
|
||||||
|
"\n"
|
||||||
|
"Please install metis and make sure that libmetis.so is in your "
|
||||||
|
"LD_LIBRARY_PATH.\n"
|
||||||
|
"The metisDecomp library can then be built in $FOAM_SRC/decompositionMethods/"
|
||||||
|
"metisDecomp\n";
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
namespace Foam
|
||||||
|
{
|
||||||
|
defineTypeNameAndDebug(metisDecomp, 0);
|
||||||
|
|
||||||
|
addToRunTimeSelectionTable
|
||||||
|
(
|
||||||
|
decompositionMethod,
|
||||||
|
metisDecomp,
|
||||||
|
dictionaryMesh
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::label Foam::metisDecomp::decompose
|
||||||
|
(
|
||||||
|
const List<int>& adjncy,
|
||||||
|
const List<int>& xadj,
|
||||||
|
const scalarField& cellWeights,
|
||||||
|
List<int>& finalDecomp
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList metisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const List<int>&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"const scalarField&, "
|
||||||
|
"List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::metisDecomp::metisDecomp
|
||||||
|
(
|
||||||
|
const dictionary& decompositionDict,
|
||||||
|
const polyMesh& mesh
|
||||||
|
)
|
||||||
|
:
|
||||||
|
decompositionMethod(decompositionDict),
|
||||||
|
mesh_(mesh)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::labelList Foam::metisDecomp::decompose
|
||||||
|
(
|
||||||
|
const pointField& points,
|
||||||
|
const scalarField& pointWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList metisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::metisDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelList& agglom,
|
||||||
|
const pointField& agglomPoints,
|
||||||
|
const scalarField& agglomWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList metisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::metisDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelListList& globalCellCells,
|
||||||
|
const pointField& cellCentres,
|
||||||
|
const scalarField& cellWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList metisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelListList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
3
src/dummyThirdParty/parMetisDecomp/Make/files
vendored
Normal file
3
src/dummyThirdParty/parMetisDecomp/Make/files
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dummyParMetisDecomp.C
|
||||||
|
|
||||||
|
LIB = $(FOAM_LIBBIN)/dummy/libparMetisDecomp
|
||||||
5
src/dummyThirdParty/parMetisDecomp/Make/options
vendored
Normal file
5
src/dummyThirdParty/parMetisDecomp/Make/options
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
EXE_INC = \
|
||||||
|
-I$(FOAM_SRC)/parallel/decompositionMethods/lnInclude \
|
||||||
|
-I$(FOAM_SRC)/parallel/parMetisDecomp/lnInclude
|
||||||
|
|
||||||
|
LIB_LIBS =
|
||||||
185
src/dummyThirdParty/parMetisDecomp/dummyParMetisDecomp.C
vendored
Normal file
185
src/dummyThirdParty/parMetisDecomp/dummyParMetisDecomp.C
vendored
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include "parMetisDecomp.H"
|
||||||
|
#include "addToRunTimeSelectionTable.H"
|
||||||
|
#include "polyMesh.H"
|
||||||
|
#include "Time.H"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
namespace Foam
|
||||||
|
{
|
||||||
|
defineTypeNameAndDebug(parMetisDecomp, 0);
|
||||||
|
|
||||||
|
addToRunTimeSelectionTable
|
||||||
|
(
|
||||||
|
decompositionMethod,
|
||||||
|
parMetisDecomp,
|
||||||
|
dictionaryMesh
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char* notImplementedMessage =
|
||||||
|
"You are trying to use parMetis but do not have the parMetisDecomp library "
|
||||||
|
"loaded.\n"
|
||||||
|
"This message is from the dummy parMetisDecomp stub library instead.\n"
|
||||||
|
"\n"
|
||||||
|
"Please install parMetis and make sure that libparMetis.so is in your "
|
||||||
|
"LD_LIBRARY_PATH.\n"
|
||||||
|
"The parMetisDecomp library can then be built in $FOAM_SRC/decompositionMethods/"
|
||||||
|
"parMetisDecomp\n";
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
|
//- Does prevention of 0 cell domains and calls parmetis.
|
||||||
|
Foam::label Foam::parMetisDecomp::decompose
|
||||||
|
(
|
||||||
|
Field<int>& xadj,
|
||||||
|
Field<int>& adjncy,
|
||||||
|
const pointField& cellCentres,
|
||||||
|
Field<int>& cellWeights,
|
||||||
|
Field<int>& faceWeights,
|
||||||
|
const List<int>& options,
|
||||||
|
|
||||||
|
List<int>& finalDecomp
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"label parMetisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"Field<int>&, "
|
||||||
|
"Field<int>&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"Field<int>&, "
|
||||||
|
"Field<int>&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"List<int>&"
|
||||||
|
")"
|
||||||
|
)<< notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::parMetisDecomp::parMetisDecomp
|
||||||
|
(
|
||||||
|
const dictionary& decompositionDict,
|
||||||
|
const polyMesh& mesh
|
||||||
|
)
|
||||||
|
:
|
||||||
|
decompositionMethod(decompositionDict),
|
||||||
|
mesh_(mesh)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::labelList Foam::parMetisDecomp::decompose
|
||||||
|
(
|
||||||
|
const pointField& cc,
|
||||||
|
const scalarField& cWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList parMetisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::parMetisDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelList& cellToRegion,
|
||||||
|
const pointField& regionPoints,
|
||||||
|
const scalarField& regionWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList parMetisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::parMetisDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelListList& globalCellCells,
|
||||||
|
const pointField& cellCentres,
|
||||||
|
const scalarField& cWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList parMetisDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelListList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Foam::parMetisDecomp::calcMetisDistributedCSR
|
||||||
|
(
|
||||||
|
const polyMesh& mesh,
|
||||||
|
List<int>& adjncy,
|
||||||
|
List<int>& xadj
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"void parMetisDecomp::calcMetisDistributedCSR"
|
||||||
|
"("
|
||||||
|
"const polyMesh&, "
|
||||||
|
"List<int>&, "
|
||||||
|
"List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
3
src/dummyThirdParty/scotchDecomp/Make/files
vendored
Normal file
3
src/dummyThirdParty/scotchDecomp/Make/files
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
dummyScotchDecomp.C
|
||||||
|
|
||||||
|
LIB = $(FOAM_LIBBIN)/dummy/libscotchDecomp
|
||||||
6
src/dummyThirdParty/scotchDecomp/Make/options
vendored
Normal file
6
src/dummyThirdParty/scotchDecomp/Make/options
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
EXE_INC = \
|
||||||
|
-I$(FOAM_SRC)/parallel/decompositionMethods/lnInclude \
|
||||||
|
-I$(FOAM_SRC)/parallel/scotchDecomp/lnInclude
|
||||||
|
|
||||||
|
LIB_LIBS =
|
||||||
|
|
||||||
280
src/dummyThirdParty/scotchDecomp/dummyScotchDecomp.C
vendored
Normal file
280
src/dummyThirdParty/scotchDecomp/dummyScotchDecomp.C
vendored
Normal file
@ -0,0 +1,280 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
||||||
|
\\/ M anipulation |
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
License
|
||||||
|
This file is part of OpenFOAM.
|
||||||
|
|
||||||
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by the
|
||||||
|
Free Software Foundation; either version 2 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||||
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
From scotch forum:
|
||||||
|
|
||||||
|
By: Francois PELLEGRINI RE: Graph mapping 'strategy' string [ reply ]
|
||||||
|
2008-08-22 10:09 Strategy handling in Scotch is a bit tricky. In order
|
||||||
|
not to be confused, you must have a clear view of how they are built.
|
||||||
|
Here are some rules:
|
||||||
|
|
||||||
|
1- Strategies are made up of "methods" which are combined by means of
|
||||||
|
"operators".
|
||||||
|
|
||||||
|
2- A method is of the form "m{param=value,param=value,...}", where "m"
|
||||||
|
is a single character (this is your first error: "f" is a method name,
|
||||||
|
not a parameter name).
|
||||||
|
|
||||||
|
3- There exist different sort of strategies : bipartitioning strategies,
|
||||||
|
mapping strategies, ordering strategies, which cannot be mixed. For
|
||||||
|
instance, you cannot build a bipartitioning strategy and feed it to a
|
||||||
|
mapping method (this is your second error).
|
||||||
|
|
||||||
|
To use the "mapCompute" routine, you must create a mapping strategy, not
|
||||||
|
a bipartitioning one, and so use stratGraphMap() and not
|
||||||
|
stratGraphBipart(). Your mapping strategy should however be based on the
|
||||||
|
"recursive bipartitioning" method ("b"). For instance, a simple (and
|
||||||
|
hence not very efficient) mapping strategy can be :
|
||||||
|
|
||||||
|
"b{sep=f}"
|
||||||
|
|
||||||
|
which computes mappings with the recursive bipartitioning method "b",
|
||||||
|
this latter using the Fiduccia-Mattheyses method "f" to compute its
|
||||||
|
separators.
|
||||||
|
|
||||||
|
If you want an exact partition (see your previous post), try
|
||||||
|
"b{sep=fx}".
|
||||||
|
|
||||||
|
However, these strategies are not the most efficient, as they do not
|
||||||
|
make use of the multi-level framework.
|
||||||
|
|
||||||
|
To use the multi-level framework, try for instance:
|
||||||
|
|
||||||
|
"b{sep=m{vert=100,low=h,asc=f}x}"
|
||||||
|
|
||||||
|
The current default mapping strategy in Scotch can be seen by using the
|
||||||
|
"-vs" option of program gmap. It is, to date:
|
||||||
|
|
||||||
|
b
|
||||||
|
{
|
||||||
|
job=t,
|
||||||
|
map=t,
|
||||||
|
poli=S,
|
||||||
|
sep=
|
||||||
|
(
|
||||||
|
m
|
||||||
|
{
|
||||||
|
asc=b
|
||||||
|
{
|
||||||
|
bnd=d{pass=40,dif=1,rem=1}f{move=80,pass=-1,bal=0.005},
|
||||||
|
org=f{move=80,pass=-1,bal=0.005},
|
||||||
|
width=3
|
||||||
|
},
|
||||||
|
low=h{pass=10}f{move=80,pass=-1,bal=0.0005},
|
||||||
|
type=h,
|
||||||
|
vert=80,
|
||||||
|
rat=0.8
|
||||||
|
}
|
||||||
|
| m
|
||||||
|
{
|
||||||
|
asc=b
|
||||||
|
{
|
||||||
|
bnd=d{pass=40,dif=1,rem=1}f{move=80,pass=-1,bal=0.005},
|
||||||
|
org=f{move=80,pass=-1,bal=0.005},
|
||||||
|
width=3
|
||||||
|
},
|
||||||
|
low=h{pass=10}f{move=80,pass=-1,bal=0.0005},
|
||||||
|
type=h,
|
||||||
|
vert=80,
|
||||||
|
rat=0.8
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include "scotchDecomp.H"
|
||||||
|
#include "addToRunTimeSelectionTable.H"
|
||||||
|
#include "Time.H"
|
||||||
|
|
||||||
|
static const char* notImplementedMessage =
|
||||||
|
"You are trying to use scotch but do not have the scotchDecomp library loaded."
|
||||||
|
"\nThis message is from the dummy scotchDecomp stub library instead.\n"
|
||||||
|
"\n"
|
||||||
|
"Please install scotch and make sure that libscotch.so is in your "
|
||||||
|
"LD_LIBRARY_PATH.\n"
|
||||||
|
"The scotchDecomp library can then be built in $FOAM_SRC/decompositionMethods/"
|
||||||
|
"scotchDecomp\n";
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
namespace Foam
|
||||||
|
{
|
||||||
|
defineTypeNameAndDebug(scotchDecomp, 0);
|
||||||
|
|
||||||
|
addToRunTimeSelectionTable
|
||||||
|
(
|
||||||
|
decompositionMethod,
|
||||||
|
scotchDecomp,
|
||||||
|
dictionaryMesh
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||||
|
|
||||||
|
void Foam::scotchDecomp::check(const int retVal, const char* str)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::label Foam::scotchDecomp::decompose
|
||||||
|
(
|
||||||
|
const List<int>& adjncy,
|
||||||
|
const List<int>& xadj,
|
||||||
|
const scalarField& cWeights,
|
||||||
|
|
||||||
|
List<int>& finalDecomp
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"label scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const List<int>&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"const scalarField&, "
|
||||||
|
"List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::scotchDecomp::scotchDecomp
|
||||||
|
(
|
||||||
|
const dictionary& decompositionDict,
|
||||||
|
const polyMesh& mesh
|
||||||
|
)
|
||||||
|
:
|
||||||
|
decompositionMethod(decompositionDict),
|
||||||
|
mesh_(mesh)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
Foam::labelList Foam::scotchDecomp::decompose
|
||||||
|
(
|
||||||
|
const pointField& points,
|
||||||
|
const scalarField& pointWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList::null();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::scotchDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelList& agglom,
|
||||||
|
const pointField& agglomPoints,
|
||||||
|
const scalarField& pointWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList::null();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::labelList Foam::scotchDecomp::decompose
|
||||||
|
(
|
||||||
|
const labelListList& globalCellCells,
|
||||||
|
const pointField& cellCentres,
|
||||||
|
const scalarField& cWeights
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelListList&, "
|
||||||
|
"const pointField&, "
|
||||||
|
"const scalarField&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
|
||||||
|
return labelList::null();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Foam::scotchDecomp::calcCSR
|
||||||
|
(
|
||||||
|
const polyMesh& mesh,
|
||||||
|
List<int>& adjncy,
|
||||||
|
List<int>& xadj
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const polyMesh&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"const List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Foam::scotchDecomp::calcCSR
|
||||||
|
(
|
||||||
|
const labelListList& cellCells,
|
||||||
|
List<int>& adjncy,
|
||||||
|
List<int>& xadj
|
||||||
|
)
|
||||||
|
{
|
||||||
|
FatalErrorIn
|
||||||
|
(
|
||||||
|
"labelList scotchDecomp::decompose"
|
||||||
|
"("
|
||||||
|
"const labelListList&, "
|
||||||
|
"const List<int>&, "
|
||||||
|
"const List<int>&"
|
||||||
|
")"
|
||||||
|
) << notImplementedMessage << exit(FatalError);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
@ -6,5 +6,4 @@ EXE_INC = \
|
|||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-ltriSurface \
|
-ltriSurface \
|
||||||
-ldecompositionMethods \
|
-ldecompositionMethods \
|
||||||
-lmetisDecompositionMethod \
|
|
||||||
-llagrangian
|
-llagrangian
|
||||||
|
|||||||
@ -2,7 +2,9 @@
|
|||||||
cd ${0%/*} || exit 1 # run from this directory
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
wmake libso decompositionMethods
|
wmakeLnInclude decompositionMethods
|
||||||
|
|
||||||
|
wmake libso scotchDecomp
|
||||||
wmake libso metisDecomp
|
wmake libso metisDecomp
|
||||||
wmake libso reconstruct
|
wmake libso reconstruct
|
||||||
|
|
||||||
@ -11,4 +13,7 @@ then
|
|||||||
( WM_OPTIONS=${WM_OPTIONS}$WM_MPLIB; wmake libso parMetisDecomp )
|
( WM_OPTIONS=${WM_OPTIONS}$WM_MPLIB; wmake libso parMetisDecomp )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
wmake libso decompositionMethods
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------- end-of-file
|
# ----------------------------------------------------------------- end-of-file
|
||||||
|
|||||||
8
src/parallel/AllwmakeLnInclude
Executable file
8
src/parallel/AllwmakeLnInclude
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
|
set -x
|
||||||
|
|
||||||
|
wmakeLnInclude decompositionMethods
|
||||||
|
wmakeLnInclude metisDecomp
|
||||||
|
wmakeLnInclude parMetisDecomp
|
||||||
|
wmakeLnInclude scotchDecomp
|
||||||
@ -4,6 +4,4 @@ simpleGeomDecomp/simpleGeomDecomp.C
|
|||||||
hierarchGeomDecomp/hierarchGeomDecomp.C
|
hierarchGeomDecomp/hierarchGeomDecomp.C
|
||||||
manualDecomp/manualDecomp.C
|
manualDecomp/manualDecomp.C
|
||||||
|
|
||||||
scotchDecomp/scotchDecomp.C
|
|
||||||
|
|
||||||
LIB = $(FOAM_LIBBIN)/libdecompositionMethods
|
LIB = $(FOAM_LIBBIN)/libdecompositionMethods
|
||||||
|
|||||||
@ -1,7 +1,9 @@
|
|||||||
EXE_INC = \
|
EXE_INC =
|
||||||
-I$(WM_THIRD_PARTY_DIR)/scotch_5.1/include \
|
|
||||||
-I/usr/include/scotch \
|
|
||||||
-I../metisDecomp/lnInclude
|
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-lscotch -lscotcherrexit
|
-L$(FOAM_LIBBIN)/dummy \
|
||||||
|
-L$(FOAM_MPI_LIBBIN) \
|
||||||
|
-lscotchDecomp \
|
||||||
|
-lmetisDecomp \
|
||||||
|
-lparMetisDecomp
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
metisDecomp.C
|
metisDecomp.C
|
||||||
|
|
||||||
LIB = $(FOAM_LIBBIN)/libmetisDecompositionMethod
|
LIB = $(FOAM_LIBBIN)/libmetisDecomp
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
EXE_INC = \
|
EXE_INC = \
|
||||||
-I$(WM_THIRD_PARTY_DIR)/metis-5.0pre2/include \
|
-I$(WM_THIRD_PARTY_DIR)/metis-5.0pre2/include \
|
||||||
-I../decompositionMethods/lnInclude
|
-I../decompositionMethods/lnInclude \
|
||||||
|
-I../scotchDecomp/lnInclude
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-lmetis \
|
-lmetis \
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
parMetisDecomp.C
|
parMetisDecomp.C
|
||||||
|
|
||||||
LIB = $(FOAM_MPI_LIBBIN)/libparMetisDecompositionMethod
|
LIB = $(FOAM_MPI_LIBBIN)/libparMetisDecomp
|
||||||
|
|||||||
@ -5,7 +5,8 @@ EXE_INC = \
|
|||||||
-I$(WM_THIRD_PARTY_DIR)/ParMetis-3.1/ParMETISLib \
|
-I$(WM_THIRD_PARTY_DIR)/ParMetis-3.1/ParMETISLib \
|
||||||
-I$(WM_THIRD_PARTY_DIR)/ParMetis-3.1 \
|
-I$(WM_THIRD_PARTY_DIR)/ParMetis-3.1 \
|
||||||
-I../decompositionMethods/lnInclude \
|
-I../decompositionMethods/lnInclude \
|
||||||
-I../metisDecomp/lnInclude
|
-I../metisDecomp/lnInclude \
|
||||||
|
-I../scotchDecomp/lnInclude
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-L$(FOAM_MPI_LIBBIN) \
|
-L$(FOAM_MPI_LIBBIN) \
|
||||||
|
|||||||
3
src/parallel/scotchDecomp/Make/files
Normal file
3
src/parallel/scotchDecomp/Make/files
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
scotchDecomp.C
|
||||||
|
|
||||||
|
LIB = $(FOAM_LIBBIN)/libscotchDecomp
|
||||||
7
src/parallel/scotchDecomp/Make/options
Normal file
7
src/parallel/scotchDecomp/Make/options
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
EXE_INC = \
|
||||||
|
-I$(WM_THIRD_PARTY_DIR)/scotch_5.1/include \
|
||||||
|
-I/usr/include/scotch \
|
||||||
|
-I../decompositionMethods/lnInclude
|
||||||
|
|
||||||
|
LIB_LIBS = \
|
||||||
|
-lscotch -lscotcherrexit
|
||||||
Reference in New Issue
Block a user