mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
More states in packet progression for GPU non aware MPI
This commit is contained in:
parent
1cc5f221f3
commit
4788dd8e2e
@ -50,7 +50,21 @@ typedef MPI_Request MpiCommsRequest_t;
|
|||||||
#ifdef ACCELERATOR_AWARE_MPI
|
#ifdef ACCELERATOR_AWARE_MPI
|
||||||
typedef MPI_Request CommsRequest_t;
|
typedef MPI_Request CommsRequest_t;
|
||||||
#else
|
#else
|
||||||
enum PacketType_t { InterNodeXmit, InterNodeRecv, IntraNodeXmit, IntraNodeRecv, InterNodeXmitISend, InterNodeReceiveHtoD };
|
/*
|
||||||
|
* Enable state transitions as each packet flows.
|
||||||
|
*/
|
||||||
|
enum PacketType_t {
|
||||||
|
FaceGather,
|
||||||
|
InterNodeXmit,
|
||||||
|
InterNodeRecv,
|
||||||
|
IntraNodeXmit,
|
||||||
|
IntraNodeRecv,
|
||||||
|
InterNodeXmitISend,
|
||||||
|
InterNodeReceiveHtoD
|
||||||
|
};
|
||||||
|
/*
|
||||||
|
*Package arguments needed for various actions along packet flow
|
||||||
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PacketType_t PacketType;
|
PacketType_t PacketType;
|
||||||
void *host_buf;
|
void *host_buf;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user