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;
129 double *vl, *vc, *
vx, *combuf;
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.num_elements();
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)
std::shared_ptr< Comm > CommSharedPtr
Pointer to a Communicator object.
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.
void nektar_crs_free(struct crs_data *data)
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.
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 Finalise(crs_data *pCrs)
Deallocates the crs mapping data.
std::shared_ptr< CommMpi > CommMpiSharedPtr
Pointer to a Communicator object.
void nektar_crs_stats(struct crs_data *data)
#define ASSERTL1(condition, msg)
Assert Level 1 – Debugging which is used whether in FULLDEBUG or DEBUG compilation mode...
void nektar_crs_solve(double *x, struct crs_data *data, double *b)