Skip to content
Snippets Groups Projects
Commit 149aa8b7 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

*** empty log message ***

parent c6f0c29b
No related branches found
No related tags found
No related merge requests found
...@@ -97,6 +97,10 @@ public: ...@@ -97,6 +97,10 @@ public:
{ {
throw; throw;
} }
inline void blas_dgemm(const Gmsh_Matrix<SCALAR>& x, const Gmsh_Matrix<SCALAR>& b,
const double c_a = 1.0, const double c_b = 1.0){
throw;
}
inline void mult(const Gmsh_Vector<SCALAR> &x, Gmsh_Vector<SCALAR> &b) inline void mult(const Gmsh_Vector<SCALAR> &x, Gmsh_Vector<SCALAR> &b)
{ {
throw; throw;
...@@ -225,6 +229,11 @@ public: ...@@ -225,6 +229,11 @@ public:
{ {
gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, data, x.data, 1.0, b.data); gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, data, x.data, 1.0, b.data);
} }
inline void blas_dgemm(const GSL_Matrix & x, const GSL_Matrix& b,
const double c_a = 1.0, const double c_b = 1.0)
{
gsl_blas_dgemm(CblasNoTrans,CblasNoTrans, c_a, x.data, b.data, c_b, data);
}
inline void set_all(const double &m) inline void set_all(const double &m)
{ {
gsl_matrix_set_all(data, m); gsl_matrix_set_all(data, m);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment