only call alpha calls if CBLAS version will be called.

release/4.3a0
Frank Dellaert 2010-02-26 03:23:48 +00:00
parent 044ea1348d
commit 17bd59ec80
1 changed files with 25 additions and 20 deletions

View File

@ -181,17 +181,20 @@ void multiplyAdd(double alpha, const Matrix& A, const Vector& x, Vector& e) {
/* ************************************************************************* */
void multiplyAdd(const Matrix& A, const Vector& x, Vector& e) {
multiplyAdd(1.0, A, x, e);
// ublas e += prod(A,x) is terribly slow
// size_t m = A.size1(), n = A.size2();
// double * ei = e.data().begin();
// const double * aij = A.data().begin();
// for (int i = 0; i < m; i++, ei++) {
// const double * xj = x.data().begin();
// for (int j = 0; j < n; j++, aij++, xj++)
// (*ei) += (*aij) * (*xj);
// }
}
#ifdef CBLAS
multiplyAdd(1.0, A, x, e);
#else
size_t m = A.size1(), n = A.size2();
double * ei = e.data().begin();
const double * aij = A.data().begin();
for (int i = 0; i < m; i++, ei++) {
const double * xj = x.data().begin();
for (int j = 0; j < n; j++, aij++, xj++)
(*ei) += (*aij) * (*xj);
}
#endif
}
/* ************************************************************************* */
Vector operator^(const Matrix& A, const Vector & v) {
@ -242,17 +245,19 @@ void transposeMultiplyAdd(double alpha, const Matrix& A, const Vector& e, Vector
/* ************************************************************************* */
void transposeMultiplyAdd(const Matrix& A, const Vector& e, Vector& x) {
transposeMultiplyAdd(1.0, A, e, x);
// ublas x += prod(trans(A),e) is terribly slow
// TODO: use BLAS
// size_t m = A.size1(), n = A.size2();
// double * xj = x.data().begin();
// for (int j = 0; j < n; j++,xj++) {
// const double * ei = e.data().begin();
// const double * aij = A.data().begin() + j;
// for (int i = 0; i < m; i++, aij+=n, ei++)
// (*xj) += (*aij) * (*ei);
// }
#ifdef CBLAS
transposeMultiplyAdd(1.0, A, e, x);
#else
size_t m = A.size1(), n = A.size2();
double * xj = x.data().begin();
for (int j = 0; j < n; j++,xj++) {
const double * ei = e.data().begin();
const double * aij = A.data().begin() + j;
for (int i = 0; i < m; i++, aij+=n, ei++)
(*xj) += (*aij) * (*ei);
}
#endif
}
/* ************************************************************************* */