Re: [eigen] Matrix decompositions |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: Re: [eigen] Matrix decompositions
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Thu, 28 Feb 2013 22:24:28 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=B47r2WdhwgjJ0xd6nmmPXpG2CG7dLB0ax/YVRbpr3Dk=; b=y4P0z2acDLBz/8QMhecR9uS/AYHWplfyDuOHdJzE3R57M/Ue/QcEot7RWLWnGYnVYE wggv7CbbxOxOZe+nOzytmmMEsUwYJ87Jk10sESYqmMJpXEpZaEzcUNGL20KwOqVSedSQ +5Bsml/0Kze71+XQpczJDT7iIN2TiCrdORyfXy7hxWspgS1neWLJq9WQvXlNeLY7biJA X00WxpE7Z9Wp5VcBJoIhbXTOm6pgZ6BL/B9n2SISANNPfwJ9nu0cgVES9alDcy4Oppkd vfz8aLA6Az5BhQCN29ib6MYyoH8rNPG8suiWuUEEmZKDduVzAHLH4BYn4R3bgmUFLM9f whVg==
On Thu, Feb 28, 2013 at 10:00 PM, Sameer Agarwal
<sameeragarwal@xxxxxxxxxx> wrote:
> So why is SIMD/vectorization disabled on unaligned matrices? and by turn on
> Map objects.
SIMD is disabled only for fixed size matrices which are supposed to be
small, and so not worth trying to adapt to the actual alignement at
run-time. For dynamic size matrices, everything is vectorized.