mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
blas: add warnings for non implemented functions
This commit is contained in:
@@ -308,6 +308,7 @@ int EIGEN_BLAS_FUNC(syr2k)(char *uplo, char *op, int *n, int *k, RealScalar *pal
|
||||
Scalar beta = *reinterpret_cast<Scalar*>(pbeta);
|
||||
|
||||
// TODO
|
||||
std::cerr << "Eigen BLAS: _syr2k is not implemented yet\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -422,6 +423,7 @@ int EIGEN_BLAS_FUNC(her2k)(char *uplo, char *op, int *n, int *k, RealScalar *pal
|
||||
}
|
||||
|
||||
// TODO
|
||||
std::cerr << "Eigen BLAS: _her2k is not implemented yet\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user