mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* bugfix in SolveTriangular found by Timothy Hunter (did not compiled for very small fixed size matrices)
* bugfix in Dot unroller * added special random generator for the unit tests and reduced the tolerance threshold by an order of magnitude this fixes issues with sum.cpp but other tests still failed sometimes, this have to be carefully checked...
This commit is contained in:
@@ -92,7 +92,7 @@ template<typename Scalar> void packetmath()
|
||||
{
|
||||
packets[0] = ei_pload(data1);
|
||||
packets[1] = ei_pload(data1+PacketSize);
|
||||
if (offset==0) ei_palign<0>(packets[0], packets[1]);
|
||||
if (offset==0) ei_palign<0>(packets[0], packets[1]);
|
||||
else if (offset==1) ei_palign<1>(packets[0], packets[1]);
|
||||
else if (offset==2) ei_palign<2>(packets[0], packets[1]);
|
||||
else if (offset==3) ei_palign<3>(packets[0], packets[1]);
|
||||
|
||||
Reference in New Issue
Block a user