aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ProductEvaluators.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-06-07 20:30:09 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-06-07 20:30:09 +0200
commit7d7bb91537e679c8246107936b5fd376bba1f5b0 (patch)
treefce52374f1d74a7153f0b58340d9b6a504fceda2 /Eigen/src/Core/ProductEvaluators.h
parentb2053990d078e15017610d526445ce78f2632edf (diff)
Missing line during manual rebase of PR-374
Diffstat (limited to 'Eigen/src/Core/ProductEvaluators.h')
-rw-r--r--Eigen/src/Core/ProductEvaluators.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/ProductEvaluators.h b/Eigen/src/Core/ProductEvaluators.h
index 5d2737d01..0d5aec570 100644
--- a/Eigen/src/Core/ProductEvaluators.h
+++ b/Eigen/src/Core/ProductEvaluators.h
@@ -357,7 +357,7 @@ struct generic_product_impl_base
{ scaleAndAddTo(dst, lhs, rhs, Scalar(-1)); }
template<typename Dst>
- static EIGEN_STRONG_INLINE void scaleAndAddTo(Dst& dst, const Lhs& lhs, const Rhs& rhs, const Scalar& alpha)
+ static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void scaleAndAddTo(Dst& dst, const Lhs& lhs, const Rhs& rhs, const Scalar& alpha)
{ Derived::scaleAndAddTo(dst,lhs,rhs,alpha); }
};