Go to the source code of this file.
|
void F77NAME() | Blas::dcopy (const int &n, const double *x, const int &incx, double *y, const int &incy) |
|
void F77NAME() | Blas::daxpy (const int &n, const double &alpha, const double *x, const int &incx, const double *y, const int &incy) |
|
double F77NAME() | Blas::ddot (const int &n, const double *x, const int &incx, const double *y, const int &incy) |
|
static void | Blas::Dcopy (const int &n, const Nektar::Array< Nektar::OneD, const double > &x, const int &incx, Nektar::Array< Nektar::OneD, double > &y, const int &incy) |
|
static void | Blas::Daxpy (const int &n, const double &alpha, const Nektar::Array< Nektar::OneD, const double > &x, const int &incx, Nektar::Array< Nektar::OneD, double > &y, const int &incy) |
| BLAS level 1: y = alpha x plus y. More...
|
|
static double | Blas::Ddot (const int &n, const Nektar::Array< Nektar::OneD, const double > &x, const int &incx, const Nektar::Array< Nektar::OneD, const double > &y, const int &incy) |
| BLAS level 1: output = \( x^T y \). More...
|
|