Go to the source code of this file.
|
struct | Eigen::internal::general_matrix_vector_product< Index, LhsScalar, LhsMapper, ColMajor, ConjugateLhs, RhsScalar, RhsMapper, ConjugateRhs, Version > |
|
struct | Eigen::internal::general_matrix_vector_product< Index, LhsScalar, LhsMapper, RowMajor, ConjugateLhs, RhsScalar, RhsMapper, ConjugateRhs, Version > |
|
◆ _EIGEN_ACCUMULATE_PACKETS [1/2]
#define _EIGEN_ACCUMULATE_PACKETS |
( |
|
Alignment0, |
|
|
|
Alignment13, |
|
|
|
Alignment2 |
|
) |
| |
Value:
padd(pload<ResPacket>(&res[j]), \
padd(pcj.pmul(lhs0.template load<LhsPacket, Alignment0>(j), ptmp0), \
pcj.pmul(lhs1.template load<LhsPacket, Alignment13>(j), ptmp1)), \
padd(pcj.pmul(lhs2.template load<LhsPacket, Alignment2>(j), ptmp2), \
pcj.pmul(lhs3.template load<LhsPacket, Alignment13>(j), ptmp3)) )))
◆ _EIGEN_ACCUMULATE_PACKETS [2/2]
#define _EIGEN_ACCUMULATE_PACKETS |
( |
|
Alignment0, |
|
|
|
Alignment13, |
|
|
|
Alignment2 |
|
) |
| |
Value: {\
RhsPacket
b = rhs.getVectorMapper(j, 0).template load<RhsPacket, Aligned>(0); \
ptmp0 = pcj.pmadd(lhs0.template load<LhsPacket, Alignment0>(j),
b, ptmp0); \
ptmp1 = pcj.pmadd(lhs1.template load<LhsPacket, Alignment13>(j),
b, ptmp1); \
ptmp2 = pcj.pmadd(lhs2.template load<LhsPacket, Alignment2>(j),
b, ptmp2); \
ptmp3 = pcj.pmadd(lhs3.template load<LhsPacket, Alignment13>(j),
b, ptmp3); }