mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-20 11:56:17 +08:00
Removed EIGEN_DEVICE_FUNC qualifers for the lu(), fullPivLu(), partialPivLu(), and inverse() functions since they aren't ready to run on GPU
This commit is contained in:
parent
c3ca9b1e76
commit
59e9edfbf1
@ -330,15 +330,11 @@ template<typename Derived> class MatrixBase
|
|||||||
|
|
||||||
/////////// LU module ///////////
|
/////////// LU module ///////////
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
inline const FullPivLU<PlainObject> fullPivLu() const;
|
inline const FullPivLU<PlainObject> fullPivLu() const;
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
inline const PartialPivLU<PlainObject> partialPivLu() const;
|
inline const PartialPivLU<PlainObject> partialPivLu() const;
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
inline const PartialPivLU<PlainObject> lu() const;
|
inline const PartialPivLU<PlainObject> lu() const;
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC
|
|
||||||
inline const Inverse<Derived> inverse() const;
|
inline const Inverse<Derived> inverse() const;
|
||||||
|
|
||||||
template<typename ResultType>
|
template<typename ResultType>
|
||||||
|
@ -879,7 +879,7 @@ struct Assignment<DstXprType, Inverse<FullPivLU<MatrixType> >, internal::assign_
|
|||||||
*
|
*
|
||||||
* \sa class FullPivLU
|
* \sa class FullPivLU
|
||||||
*/
|
*/
|
||||||
template<typename Derived> EIGEN_DEVICE_FUNC
|
template<typename Derived>
|
||||||
inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
|
inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
|
||||||
MatrixBase<Derived>::fullPivLu() const
|
MatrixBase<Derived>::fullPivLu() const
|
||||||
{
|
{
|
||||||
|
@ -327,7 +327,7 @@ struct Assignment<DstXprType, Inverse<XprType>, internal::assign_op<typename Dst
|
|||||||
*
|
*
|
||||||
* \sa computeInverseAndDetWithCheck()
|
* \sa computeInverseAndDetWithCheck()
|
||||||
*/
|
*/
|
||||||
template<typename Derived> EIGEN_DEVICE_FUNC
|
template<typename Derived>
|
||||||
inline const Inverse<Derived> MatrixBase<Derived>::inverse() const
|
inline const Inverse<Derived> MatrixBase<Derived>::inverse() const
|
||||||
{
|
{
|
||||||
EIGEN_STATIC_ASSERT(!NumTraits<Scalar>::IsInteger,THIS_FUNCTION_IS_NOT_FOR_INTEGER_NUMERIC_TYPES)
|
EIGEN_STATIC_ASSERT(!NumTraits<Scalar>::IsInteger,THIS_FUNCTION_IS_NOT_FOR_INTEGER_NUMERIC_TYPES)
|
||||||
|
@ -584,7 +584,7 @@ struct Assignment<DstXprType, Inverse<PartialPivLU<MatrixType> >, internal::assi
|
|||||||
*
|
*
|
||||||
* \sa class PartialPivLU
|
* \sa class PartialPivLU
|
||||||
*/
|
*/
|
||||||
template<typename Derived> EIGEN_DEVICE_FUNC
|
template<typename Derived>
|
||||||
inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
|
inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
|
||||||
MatrixBase<Derived>::partialPivLu() const
|
MatrixBase<Derived>::partialPivLu() const
|
||||||
{
|
{
|
||||||
@ -599,7 +599,7 @@ MatrixBase<Derived>::partialPivLu() const
|
|||||||
*
|
*
|
||||||
* \sa class PartialPivLU
|
* \sa class PartialPivLU
|
||||||
*/
|
*/
|
||||||
template<typename Derived> EIGEN_DEVICE_FUNC
|
template<typename Derived>
|
||||||
inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
|
inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
|
||||||
MatrixBase<Derived>::lu() const
|
MatrixBase<Derived>::lu() const
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user