Preparatory clean-up for Pstream
This commit is contained in:
parent
3afcca2ce9
commit
a3194d15c0
3 changed files with 0 additions and 32 deletions
|
@ -625,17 +625,6 @@ Foam::List<Foam::Pstream::commsStruct> Foam::Pstream::linearCommunication_(0);
|
||||||
Foam::List<Foam::Pstream::commsStruct> Foam::Pstream::treeCommunication_(0);
|
Foam::List<Foam::Pstream::commsStruct> Foam::Pstream::treeCommunication_(0);
|
||||||
|
|
||||||
|
|
||||||
// Should compact transfer be used in which floats replace doubles
|
|
||||||
// reducing the bandwidth requirement at the expense of some loss
|
|
||||||
// in accuracy
|
|
||||||
const Foam::debug::optimisationSwitch
|
|
||||||
Foam::Pstream::floatTransfer
|
|
||||||
(
|
|
||||||
"floatTransfer",
|
|
||||||
0
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
// Number of processors at which the reduce algorithm changes from linear to
|
// Number of processors at which the reduce algorithm changes from linear to
|
||||||
// tree
|
// tree
|
||||||
const Foam::debug::optimisationSwitch
|
const Foam::debug::optimisationSwitch
|
||||||
|
@ -646,20 +635,6 @@ Foam::Pstream::nProcsSimpleSum
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Default commsType
|
|
||||||
// Foam::Pstream::commsTypes Foam::Pstream::defaultCommsType
|
|
||||||
// (
|
|
||||||
// commsTypeNames
|
|
||||||
// [
|
|
||||||
// debug::optimisationSwitches().lookupOrAddDefault
|
|
||||||
// (
|
|
||||||
// "commsType",
|
|
||||||
// word("blocking")
|
|
||||||
// )
|
|
||||||
// ]
|
|
||||||
// );
|
|
||||||
|
|
||||||
|
|
||||||
const Foam::debug::optimisationSwitch
|
const Foam::debug::optimisationSwitch
|
||||||
Foam::Pstream::defaultCommsType
|
Foam::Pstream::defaultCommsType
|
||||||
(
|
(
|
||||||
|
|
|
@ -222,11 +222,6 @@ public:
|
||||||
|
|
||||||
// Static data
|
// Static data
|
||||||
|
|
||||||
//- Should compact transfer be used in which floats replace doubles
|
|
||||||
// reducing the bandwidth requirement at the expense of some loss
|
|
||||||
// in accuracy
|
|
||||||
static const debug::optimisationSwitch floatTransfer;
|
|
||||||
|
|
||||||
//- Number of processors at which the sum algorithm changes from linear
|
//- Number of processors at which the sum algorithm changes from linear
|
||||||
// to tree
|
// to tree
|
||||||
static const debug::optimisationSwitch nProcsSimpleSum;
|
static const debug::optimisationSwitch nProcsSimpleSum;
|
||||||
|
|
|
@ -633,8 +633,6 @@ Foam::argList::argList
|
||||||
{
|
{
|
||||||
Info<< "Slaves : " << slaveProcs << nl
|
Info<< "Slaves : " << slaveProcs << nl
|
||||||
<< "Pstream initialized with:" << nl
|
<< "Pstream initialized with:" << nl
|
||||||
<< " floatTransfer : "
|
|
||||||
<< Pstream::floatTransfer << nl
|
|
||||||
<< " nProcsSimpleSum : "
|
<< " nProcsSimpleSum : "
|
||||||
<< Pstream::nProcsSimpleSum() << nl
|
<< Pstream::nProcsSimpleSum() << nl
|
||||||
<< " commsType : "
|
<< " commsType : "
|
||||||
|
|
Reference in a new issue