Benoit Jacob 527557672a 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.
2009-08-09 20:49:55 +02:00
2009-07-28 17:11:15 +02:00
2009-08-06 16:54:55 +02:00
2009-08-04 17:06:54 +02:00
2008-09-15 15:45:41 +00:00
2009-05-19 11:48:50 -05:00
Description
No description provided
MPL-2.0 118 MiB
Languages
C++ 85.1%
Fortran 8.5%
C 2.8%
CMake 1.9%
Cuda 1.2%
Other 0.4%