RE: [eigen] |
[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]
Thanks Benoit, Oleg From: Listengine
[mailto:listengine@xxxxxxxxxxxxxxxxx] On
Behalf Of Benoit Jacob aaahh... this had me
puzzled for a while, but what you really have here is an aliasing problem. With
the devel branch, when you do S = S.inverse(), S starts being overwritten with
its inverse and then read again to compute the rest of the inverse... i need to
have a look at the code to see if we're getting any speed gain from that, a
priori i'd say let's work like in 2.0, taking care of aliasing, and if later
there is demand for a super optimized noalias variant, we can then add it with an
explicit name like a.noalias() = a.inverse(), like for products. 2010/5/28 SHIROKOBROD Oleg Hello,
|
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |