45 namespace LibUtilities
64 if (fpoints0 == tpoints0)
72 GP0 =
PointsManager()[tpoints0]->GetGalerkinProjection(fpoints0);
92 if (fpoints0 == tpoints0)
101 GP0 =
PointsManager()[tpoints0]->GetGalerkinProjection(fpoints0);
104 GP0->GetPtr().get(), tpoints0.
GetNumPoints(), from, 1, 0.0,
142 if (fpoints1 == tpoints1)
148 GP1 =
PointsManager()[tpoints1]->GetGalerkinProjection(fpoints1);
149 Blas::Dgemm(
'N',
'T', fnp0, tnp1, fnp1, 1.0, from, fnp0,
150 GP1->GetPtr().get(), tnp1, 0.0, wsp.get(), fnp0);
153 if (fpoints0 == tpoints0)
159 GP0 =
PointsManager()[tpoints0]->GetGalerkinProjection(fpoints0);
160 Blas::Dgemm(
'N',
'N', tnp0, tnp1, fnp0, 1.0, GP0->GetPtr().get(), tnp0,
161 wsp.get(), fnp0, 0.0, to, tnp0);
186 tpoints1, tpoints2, to.data());
206 GP2 =
PointsManager()[tpoints2]->GetGalerkinProjection(fpoints2);
207 Blas::Dgemm(
'N',
'T', fnp0 * fnp1, tnp2, fnp2, 1.0, from, fnp0 * fnp1,
208 GP2->GetPtr().get(), tnp2, 0.0, wsp2.get(), fnp0 * fnp1);
210 GP1 =
PointsManager()[tpoints1]->GetGalerkinProjection(fpoints1);
211 for (
int i = 0; i < tnp2; i++)
214 wsp2.get() + i * fnp0 * fnp1, fnp0, GP1->GetPtr().get(),
215 tnp1, 0.0, wsp1.get() + i * fnp0 * tnp1, fnp0);
218 GP0 =
PointsManager()[tpoints0]->GetGalerkinProjection(fpoints0);
219 Blas::Dgemm(
'N',
'N', tnp0, tnp1 * tnp2, fnp0, 1.0, GP0->GetPtr().get(),
220 tnp0, wsp1.get(), fnp0, 0.0, to, tnp0);
Describes the specification for a Basis.
PointsKey GetPointsKey() const
Return distribution of points.
Defines a specification for a set of points.
unsigned int GetNumPoints() const
static void Dgemv(const char &trans, const int &m, const int &n, const double &alpha, const double *a, const int &lda, const double *x, const int &incx, const double &beta, double *y, const int &incy)
BLAS level 2: Matrix vector multiply y = A x where A[m x n].
static void Dgemm(const char &transa, const char &transb, const int &m, const int &n, const int &k, const double &alpha, const double *a, const int &lda, const double *b, const int &ldb, const double &beta, double *c, const int &ldc)
BLAS level 3: Matrix-matrix multiply C = A x B where op(A)[m x k], op(B)[k x n], C[m x n] DGEMM perfo...
void PhysGalerkinProject3D(const BasisKey &fbasis0, const BasisKey &fbasis1, const BasisKey &fbasis2, const Array< OneD, const NekDouble > &from, const BasisKey &tbasis0, const BasisKey &tbasis1, const BasisKey &tbasis2, Array< OneD, NekDouble > &to)
void PhysGalerkinProject1D(const BasisKey &fbasis0, const Array< OneD, const NekDouble > &from, const BasisKey &tbasis0, Array< OneD, NekDouble > &to)
PointsManagerT & PointsManager(void)
void PhysGalerkinProject2D(const BasisKey &fbasis0, const BasisKey &fbasis1, const Array< OneD, const NekDouble > &from, const BasisKey &tbasis0, const BasisKey &tbasis1, Array< OneD, NekDouble > &to)
The above copyright notice and this permission notice shall be included.
std::shared_ptr< DNekMat > DNekMatSharedPtr
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)