Re: [eigen] Calls to copyPacketByOuterInner: when do they happen? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Calls to copyPacketByOuterInner: when do they happen?
- From: Sébastien Barthélémy <barthelemy@xxxxxxxxx>
- Date: Mon, 25 Nov 2013 23:10:00 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=X5EhtbG/eRmhiW094NweQiEqoEbThGCtlApTZW744J4=; b=e78UlbVQZEu7nPRKhkf4oeV2vHig6IFTlDuuNgba7K/pxBa/9hBeTo/1r7mQdXzHNa qIyo2jkbATB6q4+lN/Qcc8AZnyCnx0CDeFxRBtkVSBpZKZVhU3iGAXIav1QATs6S3X4/ p06S5n7xU7HLbp5nXWt7G0eylp1BjhRrqCqZFS0VJfRWLdfCgoSZR5p9DZZAuSYscEET 8whlKVZ11sOLU7Zd8CsH3Jp6jm7KZWgXOlXp3o2FCVIwFHu8QBAqELgbYy6wMHCbGHID 2l+ZfA4+6/uI2hVw8kE2S9BxH6xOo8fwwZMR4ZFPctMvgg8vjeb7WtrB363Yx/UjSBsF pWhw==
Le 25 nov. 2013 22:50, "Martin Felis" <martin.felis@xxxxxxxxxxxxxxxxxxxxx> a écrit :
> Could it be that uninitialized values have a negative impact on Eigen's
> performance?
Yes, I had the same problem once. It turned out that uninitialized values produce much more denormalized numbers than initialized ones.
You can confirm it using the FTZ and DAZ modes of the processor.
Cheers