Re: [eigen] Eigen2 --> Eigen3 perf regression patch. |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Eigen2 --> Eigen3 perf regression patch.
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Tue, 2 Mar 2010 19:56:21 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=Y1SA6J15i4L3/8Fc+/x+vz4jwZUl9HrBElBLl9bATlw=; b=dxe3BUHskDd+AGf9lokrXqQ7N+VsTZtPTn8pd97ZEZQfZqoaO9OLZSliYctfIAJad0 4K0kYhMlZVIl23YdVTLDop69hKQo/yr7N3+LS4ksUrTMhXrWL3s55lXyeFscpUgjTCG/ qSF7bmesUqWrsp0r1FeoHHA3vozIseJsjTmTI=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=HXke+iIc/VOfZYVEweMpykIqxehqWhAO/+mI4LnfaIeF42PR4vA5GHcx5KjieA3/Od VwPAHu8MmG0yo7PV+DfJx9S0QDW8SKSs530MY4oFbhuTF6+cXNZnIeVGIBgoHzK7O0nK W8r/l30tuDKpFS4TGUmwtYv7iPBvN4PtzHsas=
I applied your patch - thanks for sending it to us. It's good to have
some people helping us fixing regressions and it's good to have some
more people on the MSVC front. ;)
By the way, in your code
Vector2d v = Vector2d::Random(DIMS);
is invalid. It should be
Vector2d v = Vector2d::Random();
- Hauke