mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: missing default parameters for UIPstream::read
ENH: support UIPstream::read, UOPstream::write with UList, SubList
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2019-2020 OpenCFD Ltd.
|
Copyright (C) 2019-2023 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -309,32 +309,45 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
if (Pstream::parRun())
|
if (Pstream::parRun())
|
||||||
{
|
{
|
||||||
|
// Fixed buffer would also work, but want to test using UList
|
||||||
|
List<labelPair> buffer;
|
||||||
|
|
||||||
|
const label startOfRequests = UPstream::nRequests();
|
||||||
|
|
||||||
if (Pstream::master())
|
if (Pstream::master())
|
||||||
{
|
{
|
||||||
|
buffer.resize(UPstream::nProcs());
|
||||||
|
buffer[0] = labelPair(0, UPstream::myProcNo());
|
||||||
|
|
||||||
for (const int proci : Pstream::subProcs())
|
for (const int proci : Pstream::subProcs())
|
||||||
{
|
{
|
||||||
IPstream fromSlave(Pstream::commsTypes::blocking, proci);
|
UIPstream::read
|
||||||
FixedList<label, 2> list3(fromSlave);
|
(
|
||||||
|
UPstream::commsTypes::nonBlocking,
|
||||||
Serr<< "Receiving from " << proci
|
proci,
|
||||||
<< " : " << list3 << endl;
|
buffer.slice(proci, 1)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Perr<< "Sending to master" << endl;
|
buffer.resize(1);
|
||||||
|
buffer[0] = labelPair(0, UPstream::myProcNo());
|
||||||
|
|
||||||
OPstream toMaster
|
Perr<< "Sending to master: " << buffer << endl;
|
||||||
|
|
||||||
|
UOPstream::write
|
||||||
(
|
(
|
||||||
Pstream::commsTypes::blocking,
|
UPstream::commsTypes::nonBlocking,
|
||||||
Pstream::masterNo()
|
UPstream::masterNo(),
|
||||||
|
buffer.slice(0, 1) // OK
|
||||||
|
/// buffer // Also OK
|
||||||
);
|
);
|
||||||
|
|
||||||
FixedList<label, 2> list3;
|
|
||||||
list3[0] = 0;
|
|
||||||
list3[1] = Pstream::myProcNo();
|
|
||||||
toMaster << list3;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UPstream::waitRequests(startOfRequests);
|
||||||
|
|
||||||
|
Info<< "Gathered: " << buffer << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@ -251,8 +251,8 @@ public:
|
|||||||
|
|
||||||
// Static Functions
|
// Static Functions
|
||||||
|
|
||||||
//- Read buffer contents from given processor
|
//- Read buffer contents from given processor.
|
||||||
// \return the message size
|
// \return the message size (bytes read)
|
||||||
static label read
|
static label read
|
||||||
(
|
(
|
||||||
const UPstream::commsTypes commsType,
|
const UPstream::commsTypes commsType,
|
||||||
@ -265,8 +265,8 @@ public:
|
|||||||
UPstream::Request* req = nullptr
|
UPstream::Request* req = nullptr
|
||||||
);
|
);
|
||||||
|
|
||||||
//- Read buffer contents (non-blocking) from given processor
|
//- Read buffer contents (non-blocking) from given processor.
|
||||||
// \return the message size
|
// \return the message size (bytes read)
|
||||||
inline static label read
|
inline static label read
|
||||||
(
|
(
|
||||||
//! [out] request information
|
//! [out] request information
|
||||||
@ -274,8 +274,8 @@ public:
|
|||||||
const int fromProcNo,
|
const int fromProcNo,
|
||||||
char* buf,
|
char* buf,
|
||||||
const std::streamsize bufSize,
|
const std::streamsize bufSize,
|
||||||
const int tag,
|
const int tag = UPstream::msgType(),
|
||||||
const label communicator
|
const label comm = UPstream::worldComm
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return UIPstream::read
|
return UIPstream::read
|
||||||
@ -285,7 +285,113 @@ public:
|
|||||||
buf,
|
buf,
|
||||||
bufSize,
|
bufSize,
|
||||||
tag,
|
tag,
|
||||||
communicator,
|
comm,
|
||||||
|
&req
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Read into UList storage from given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return the message size (bytes read). May change in the future
|
||||||
|
template<class Type>
|
||||||
|
inline static label read
|
||||||
|
(
|
||||||
|
const UPstream::commsTypes commsType,
|
||||||
|
const int fromProcNo,
|
||||||
|
UList<Type>& buffer,
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm,
|
||||||
|
//! [out] request information (for non-blocking)
|
||||||
|
UPstream::Request* req = nullptr
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UIPstream::read
|
||||||
|
(
|
||||||
|
commsType,
|
||||||
|
fromProcNo,
|
||||||
|
buffer.data_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
|
req
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Read into SubList storage from given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return the message size (bytes read). May change in the future
|
||||||
|
template<class Type>
|
||||||
|
inline static label read
|
||||||
|
(
|
||||||
|
const UPstream::commsTypes commsType,
|
||||||
|
const int fromProcNo,
|
||||||
|
SubList<Type> buffer, // passed by shallow copy
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm,
|
||||||
|
//! [out] request information (for non-blocking)
|
||||||
|
UPstream::Request* req = nullptr
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UIPstream::read
|
||||||
|
(
|
||||||
|
commsType,
|
||||||
|
fromProcNo,
|
||||||
|
buffer.data_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
|
req
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Read into UList storage (non-blocking) from given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return the message size (bytes read). May change in the future
|
||||||
|
template<class Type>
|
||||||
|
inline static label read
|
||||||
|
(
|
||||||
|
//! [out] request information
|
||||||
|
UPstream::Request& req,
|
||||||
|
const int fromProcNo,
|
||||||
|
UList<Type>& buffer,
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UIPstream::read
|
||||||
|
(
|
||||||
|
UPstream::commsTypes::nonBlocking,
|
||||||
|
fromProcNo,
|
||||||
|
buffer.data_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
|
&req
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Read into SubList storage (non-blocking) from given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return the message size (bytes read). May change in the future
|
||||||
|
template<class Type>
|
||||||
|
inline static label read
|
||||||
|
(
|
||||||
|
//! [out] request information
|
||||||
|
UPstream::Request& req,
|
||||||
|
const int fromProcNo,
|
||||||
|
SubList<Type> buffer, // passed by shallow copy
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UIPstream::read
|
||||||
|
(
|
||||||
|
UPstream::commsTypes::nonBlocking,
|
||||||
|
fromProcNo,
|
||||||
|
buffer.data_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
&req
|
&req
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -317,11 +423,11 @@ public:
|
|||||||
//- and IO format
|
//- and IO format
|
||||||
UIPBstream
|
UIPBstream
|
||||||
(
|
(
|
||||||
const UPstream::commsTypes, //!< ignored
|
const UPstream::commsTypes, //!< irrelevant
|
||||||
const int rootProcNo, //!< normally UPstream::masterNo()
|
const int rootProcNo, //!< normally UPstream::masterNo()
|
||||||
DynamicList<char>& receiveBuf,
|
DynamicList<char>& receiveBuf,
|
||||||
label& receiveBufPosition,
|
label& receiveBufPosition,
|
||||||
const int tag = UPstream::msgType(), //!< ignored
|
const int tag = UPstream::msgType(), //!< irrelevant
|
||||||
const label comm = UPstream::worldComm,
|
const label comm = UPstream::worldComm,
|
||||||
const bool clearAtEnd = false, //!< destroy receiveBuf if at end
|
const bool clearAtEnd = false, //!< destroy receiveBuf if at end
|
||||||
IOstreamOption::streamFormat fmt = IOstreamOption::BINARY
|
IOstreamOption::streamFormat fmt = IOstreamOption::BINARY
|
||||||
@ -341,7 +447,7 @@ public:
|
|||||||
// Static Functions
|
// Static Functions
|
||||||
|
|
||||||
//- Wrapped version of UPstream::broadcast
|
//- Wrapped version of UPstream::broadcast
|
||||||
// \return the message size
|
// \return the message size (bytes read)
|
||||||
static label read
|
static label read
|
||||||
(
|
(
|
||||||
const int rootProcNo, //!< normally UPstream::masterNo()
|
const int rootProcNo, //!< normally UPstream::masterNo()
|
||||||
|
|||||||
@ -364,6 +364,63 @@ public:
|
|||||||
sendMode
|
sendMode
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//- Write UList contents to given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return True on success
|
||||||
|
template<class Type>
|
||||||
|
inline static bool write
|
||||||
|
(
|
||||||
|
const UPstream::commsTypes commsType,
|
||||||
|
const int toProcNo,
|
||||||
|
const UList<Type>& buffer,
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm,
|
||||||
|
//! [out] request information (for non-blocking)
|
||||||
|
UPstream::Request* req = nullptr,
|
||||||
|
const UPstream::sendModes sendMode = UPstream::sendModes::normal
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UOPstream::write
|
||||||
|
(
|
||||||
|
commsType,
|
||||||
|
toProcNo,
|
||||||
|
buffer.cdata_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
|
req,
|
||||||
|
sendMode
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
//- Write UList contents (non-blocking) to given processor.
|
||||||
|
// Only valid for contiguous data types.
|
||||||
|
// \return True on success
|
||||||
|
template<class Type>
|
||||||
|
inline static bool write
|
||||||
|
(
|
||||||
|
//! [out] request information
|
||||||
|
UPstream::Request& req,
|
||||||
|
const int toProcNo,
|
||||||
|
const UList<Type>& buffer,
|
||||||
|
const int tag = UPstream::msgType(),
|
||||||
|
const label comm = UPstream::worldComm,
|
||||||
|
const UPstream::sendModes sendMode = UPstream::sendModes::normal
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return UOPstream::write
|
||||||
|
(
|
||||||
|
UPstream::commsTypes::nonBlocking,
|
||||||
|
toProcNo,
|
||||||
|
buffer.cdata_bytes(),
|
||||||
|
buffer.size_bytes(),
|
||||||
|
tag,
|
||||||
|
comm,
|
||||||
|
&req,
|
||||||
|
sendMode
|
||||||
|
);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -394,10 +451,10 @@ public:
|
|||||||
//- and IO format
|
//- and IO format
|
||||||
UOPBstream
|
UOPBstream
|
||||||
(
|
(
|
||||||
const UPstream::commsTypes, //!< ignored
|
const UPstream::commsTypes, //!< irrelevant
|
||||||
const int toProcNo, //!< normally UPstream::masterNo()
|
const int toProcNo, //!< normally UPstream::masterNo()
|
||||||
DynamicList<char>& sendBuf,
|
DynamicList<char>& sendBuf,
|
||||||
const int tag = UPstream::msgType(), //!< ignored
|
const int tag = UPstream::msgType(), //!< irrelevant
|
||||||
const label comm = UPstream::worldComm,
|
const label comm = UPstream::worldComm,
|
||||||
const bool sendAtDestruct = true,
|
const bool sendAtDestruct = true,
|
||||||
IOstreamOption::streamFormat fmt = IOstreamOption::BINARY
|
IOstreamOption::streamFormat fmt = IOstreamOption::BINARY
|
||||||
|
|||||||
Reference in New Issue
Block a user