aboutsummaryrefslogtreecommitdiff
path: root/Eigen/src/Core/MatrixBase.h
diff options
context:
space:
mode:
authorMiao Wang <miaowang@google.com>2017-07-06 11:13:06 -0700
committerMiao Wang <miaowang@google.com>2017-07-06 20:19:54 +0000
commiteda03298de395cf6217486971e6529f92da8da79 (patch)
treecb15cce81c536015fc5d7c13e6ee5a64cf5c5480 /Eigen/src/Core/MatrixBase.h
parent91ebe5d75039bce22610f2d1a5834f465cb4b40a (diff)
downloadeigen-eda03298de395cf6217486971e6529f92da8da79.tar.gz
Rebase Eigen to 3.3.4
Test: mm Test: build system image for sailfish Test: BLAS CTS tests pass Change-Id: I4944ef4940e8cd8dd77191cff20d506c9da43f02
Diffstat (limited to 'Eigen/src/Core/MatrixBase.h')
-rw-r--r--Eigen/src/Core/MatrixBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index f7cf04cde..ce412180a 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -294,7 +294,7 @@ template<typename Derived> class MatrixBase
* fuzzy comparison such as isApprox()
* \sa isApprox(), operator!= */
template<typename OtherDerived>
- inline bool operator==(const MatrixBase<OtherDerived>& other) const
+ EIGEN_DEVICE_FUNC inline bool operator==(const MatrixBase<OtherDerived>& other) const
{ return cwiseEqual(other).all(); }
/** \returns true if at least one pair of coefficients of \c *this and \a other are not exactly equal to each other.
@@ -302,7 +302,7 @@ template<typename Derived> class MatrixBase
* fuzzy comparison such as isApprox()
* \sa isApprox(), operator== */
template<typename OtherDerived>
- inline bool operator!=(const MatrixBase<OtherDerived>& other) const
+ EIGEN_DEVICE_FUNC inline bool operator!=(const MatrixBase<OtherDerived>& other) const
{ return cwiseNotEqual(other).any(); }
NoAlias<Derived,Eigen::MatrixBase > noalias();