[eigen-commits] commit/eigen2: bjacob: disable the assembly for fast unaligned stores. indeed, there is a strange bug that is triggered by this code: |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen-commits Archives
]
1 new changeset in eigen2:
http://www.bitbucket.org/eigen/eigen2/changeset/5b5da30c35cd/
changeset: r1405:5b5da30c35cd
user: bjacob
date: 2009-08-09 20:49:55
summary: disable the assembly for fast unaligned stores. indeed, there is a strange bug that is triggered by this code:
#include<Eigen/Core>
int main()
{
Eigen::Matrix4f m;
m <<1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16;
m.col(0).swap(m.col(1));
std::cout << m << std::endl;
}
when the fast unaligned stores are used, the column is copied instead of being swapped.
affected #: 1 file (5 bytes)
Repository URL: http://bitbucket.org/eigen/eigen2/
--
This is a commit notification from bitbucket.org.
You are receiving this because you have the service
enabled, addressing the recipient of this email.