Disable some shortcuts with nvcc

This commit is contained in:
Gael Guennebaud
2013-07-31 16:56:31 +02:00
parent 6126ad801f
commit 55b57fcba6
6 changed files with 13 additions and 1 deletions

View File

@@ -860,6 +860,7 @@ struct solve_retval<JacobiSVD<_MatrixType, QRPreconditioner>, Rhs>
};
} // end namespace internal
#ifndef __CUDACC__
/** \svd_module
*
* \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);
}
#endif // __CUDACC__
} // end namespace Eigen