35 #ifndef NEKTAR_LIB_UTILITIES_COMMUNICATION_XXT_HPP
36 #define NEKTAR_LIB_UTILITIES_COMMUNICATION_XXT_HPP
68 unsigned int n, *Lrp, *
Lj;
74 unsigned int n, *Arp, *
Aj;
134 unsigned int nz,
const unsigned int *Ai,
135 const unsigned int *Aj,
const double *
A,
136 unsigned int null_space,
167 #ifdef NEKTAR_USE_MPI
168 unsigned int nz = pAr.size();
170 std::dynamic_pointer_cast<LibUtilities::CommMpi>(pComm);
171 ASSERTL1(vCommMpi,
"Failed to cast MPI Comm object.");
173 MPI_Comm_dup(vCommMpi->GetComm(), &vComm.
c);
174 vComm.
id = vCommMpi->GetRank();
175 vComm.
np = vCommMpi->GetSize();
178 MPI_Comm_free(&vComm.
c);
192 #ifdef NEKTAR_USE_MPI
206 #ifdef NEKTAR_USE_MPI
208 MPI_Finalized(&finalized);
209 if (pCrs && !finalized)
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode....
std::shared_ptr< CommMpi > CommMpiSharedPtr
Pointer to a Communicator object.
std::shared_ptr< Comm > CommSharedPtr
Pointer to a Communicator object.
The above copyright notice and this permission notice shall be included.
void nektar_crs_stats(struct crs_data *data)
static void Finalise(crs_data *pCrs)
Deallocates the crs mapping data.
void nektar_crs_free(struct crs_data *data)
struct crs_data * nektar_crs_setup(unsigned int n, const unsigned long *id, unsigned int nz, const unsigned int *Ai, const unsigned int *Aj, const double *A, unsigned int null_space, const struct comm *comm)
static void Solve(Nektar::Array< OneD, NekDouble > pX, struct crs_data *pCrs, Nektar::Array< OneD, NekDouble > pB)
Solve the matrix system for a given input vector b.
static struct crs_data * Init(unsigned int pRank, const Nektar::Array< OneD, unsigned long > pId, const Nektar::Array< OneD, unsigned int > pAi, const Nektar::Array< OneD, unsigned int > pAj, const Nektar::Array< OneD, NekDouble > pAr, const LibUtilities::CommSharedPtr &pComm)
Initialise the matrix-solve.
void nektar_crs_solve(double *x, struct crs_data *data, double *b)