mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix tensor documentation.
This commit is contained in:
@@ -15,13 +15,6 @@
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
/** \class TensorConversionOp
|
||||
* \ingroup CXX11_Tensor_Module
|
||||
*
|
||||
* \brief Tensor conversion class. This class makes it possible to vectorize
|
||||
* type casting operations when the number of scalars per packet in the source
|
||||
* and the destination type differ
|
||||
*/
|
||||
namespace internal {
|
||||
template <typename TargetType, typename XprType>
|
||||
struct traits<TensorConversionOp<TargetType, XprType> > {
|
||||
@@ -162,6 +155,13 @@ struct PacketConverter<TensorEvaluator, SrcPacket, TgtPacket, 1, TgtCoeffRatio>
|
||||
const typename TensorEvaluator::Index m_maxIndex;
|
||||
};
|
||||
|
||||
/**
|
||||
* \ingroup CXX11_Tensor_Module
|
||||
*
|
||||
* \brief Tensor conversion class. This class makes it possible to vectorize
|
||||
* type casting operations when the number of scalars per packet in the source
|
||||
* and the destination type differ
|
||||
*/
|
||||
template <typename TargetType, typename XprType>
|
||||
class TensorConversionOp : public TensorBase<TensorConversionOp<TargetType, XprType>, ReadOnlyAccessors> {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user