Revert "fix unaligned access in trmv"

This reverts merge request !1536
This commit is contained in:
Antonio Sánchez 2024-03-06 16:42:47 +00:00
parent 38fcedaf8e
commit b0de778d1d

View File

@ -309,7 +309,7 @@ struct trmv_selector<Mode, RowMajor> {
Index size = actualRhs.size();
EIGEN_DENSE_STORAGE_CTOR_PLUGIN
#endif
smart_copy(actualRhsPtr, actualRhsPtr + actualRhs.size(), buffer);
Map<typename ActualRhsTypeCleaned::PlainObject, Eigen::AlignedMax>(buffer, actualRhs.size()) = actualRhs;
actualRhsPtr = buffer;
}
// Deallocate only if malloced.