mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 19:29:02 +08:00
Disable some shortcuts with nvcc
This commit is contained in:
parent
6126ad801f
commit
55b57fcba6
@ -575,6 +575,7 @@ MatrixType LDLT<MatrixType,_UpLo>::reconstructedMatrix() const
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \cholesky_module
|
/** \cholesky_module
|
||||||
* \returns the Cholesky decomposition with full pivoting without square root of \c *this
|
* \returns the Cholesky decomposition with full pivoting without square root of \c *this
|
||||||
*/
|
*/
|
||||||
@ -594,6 +595,7 @@ MatrixBase<Derived>::ldlt() const
|
|||||||
{
|
{
|
||||||
return LDLT<PlainObject>(derived());
|
return LDLT<PlainObject>(derived());
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
@ -465,6 +465,7 @@ MatrixType LLT<MatrixType,_UpLo>::reconstructedMatrix() const
|
|||||||
return matrixL() * matrixL().adjoint().toDenseMatrix();
|
return matrixL() * matrixL().adjoint().toDenseMatrix();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \cholesky_module
|
/** \cholesky_module
|
||||||
* \returns the LLT decomposition of \c *this
|
* \returns the LLT decomposition of \c *this
|
||||||
*/
|
*/
|
||||||
@ -484,6 +485,7 @@ SelfAdjointView<MatrixType, UpLo>::llt() const
|
|||||||
{
|
{
|
||||||
return LLT<PlainObject,UpLo>(m_matrix);
|
return LLT<PlainObject,UpLo>(m_matrix);
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
@ -563,6 +563,7 @@ typename ColPivHouseholderQR<MatrixType>::HouseholderSequenceType ColPivHousehol
|
|||||||
return HouseholderSequenceType(m_qr, m_hCoeffs.conjugate()).setLength(m_nonzero_pivots);
|
return HouseholderSequenceType(m_qr, m_hCoeffs.conjugate()).setLength(m_nonzero_pivots);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \return the column-pivoting Householder QR decomposition of \c *this.
|
/** \return the column-pivoting Householder QR decomposition of \c *this.
|
||||||
*
|
*
|
||||||
* \sa class ColPivHouseholderQR
|
* \sa class ColPivHouseholderQR
|
||||||
@ -573,6 +574,7 @@ MatrixBase<Derived>::colPivHouseholderQr() const
|
|||||||
{
|
{
|
||||||
return ColPivHouseholderQR<PlainObject>(eval());
|
return ColPivHouseholderQR<PlainObject>(eval());
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
@ -607,6 +607,7 @@ inline typename FullPivHouseholderQR<MatrixType>::MatrixQReturnType FullPivHouse
|
|||||||
return MatrixQReturnType(m_qr, m_hCoeffs, m_rows_transpositions);
|
return MatrixQReturnType(m_qr, m_hCoeffs, m_rows_transpositions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \return the full-pivoting Householder QR decomposition of \c *this.
|
/** \return the full-pivoting Householder QR decomposition of \c *this.
|
||||||
*
|
*
|
||||||
* \sa class FullPivHouseholderQR
|
* \sa class FullPivHouseholderQR
|
||||||
@ -617,6 +618,7 @@ MatrixBase<Derived>::fullPivHouseholderQr() const
|
|||||||
{
|
{
|
||||||
return FullPivHouseholderQR<PlainObject>(eval());
|
return FullPivHouseholderQR<PlainObject>(eval());
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
@ -358,6 +358,7 @@ HouseholderQR<MatrixType>& HouseholderQR<MatrixType>::compute(const MatrixType&
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \return the Householder QR decomposition of \c *this.
|
/** \return the Householder QR decomposition of \c *this.
|
||||||
*
|
*
|
||||||
* \sa class HouseholderQR
|
* \sa class HouseholderQR
|
||||||
@ -368,6 +369,7 @@ MatrixBase<Derived>::householderQr() const
|
|||||||
{
|
{
|
||||||
return HouseholderQR<PlainObject>(eval());
|
return HouseholderQR<PlainObject>(eval());
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
@ -860,6 +860,7 @@ struct solve_retval<JacobiSVD<_MatrixType, QRPreconditioner>, Rhs>
|
|||||||
};
|
};
|
||||||
} // end namespace internal
|
} // end namespace internal
|
||||||
|
|
||||||
|
#ifndef __CUDACC__
|
||||||
/** \svd_module
|
/** \svd_module
|
||||||
*
|
*
|
||||||
* \return the singular value decomposition of \c *this computed by two-sided
|
* \return the singular value decomposition of \c *this computed by two-sided
|
||||||
@ -873,6 +874,7 @@ MatrixBase<Derived>::jacobiSvd(unsigned int computationOptions) const
|
|||||||
{
|
{
|
||||||
return JacobiSVD<PlainObject>(*this, computationOptions);
|
return JacobiSVD<PlainObject>(*this, computationOptions);
|
||||||
}
|
}
|
||||||
|
#endif // __CUDACC__
|
||||||
|
|
||||||
} // end namespace Eigen
|
} // end namespace Eigen
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user