[eigen] What happens inside Eigen |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] What happens inside Eigen
- From: "Benoit Jacob" <jacob.benoit.1@xxxxxxxxx>
- Date: Fri, 5 Dec 2008 15:42:17 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=SfKbE5kQvxqa2bur6Y1LYOmUQqpsl4CtDrDluQuKzM0=; b=Gq+LVrOLcwYV2cp2j6vgOQHUWGg7UmbkIvnEidLB5vFQ9fNHHBknNspsYHZW5fLqLP 7kgU3TwiZjJhqrYk4X9X5w75cqM6yGZuDiJ0RusqD4clbYXSjH0yvGNie7MZciqnHR6k NHlSvV2oTKMa7tDPeZRss4nRrf5r6SM7YpRlA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Zc3t7Gg6q0UID7aaOe/mjOlCArybLddDyRg/OEUxqJdH8nrdjlx3a0xHuuoH4E1oX4 2KRh1ScnyHcRUkn1KlrBzTpKYQW74UhWdq4b7kwudw8iZF+IHeaCXKpTZBzUUI3f10sh sbEAKsYBbxRWO7DorKvJp9EZBnWMoYQ5CgvGM=
Hi List,
As you know, we're really serious about getting more hackers involved
in Eigen and making sure that it's possible for newcomers to
understand Eigen internals...
So I wrote a new dox page where we study a trivial example program
doing one vector addition "u = v + w" and we follow Eigen as is
complex logic expands, all the way down to the emitted assembly
intructions. Along the way we get to learn how expression templates
work, and we explain some aspects of the design of Eigen.
I uploaded it here for your reading pleasure (note that the rest of
the online dox is not yet updated since beta1):
http://eigen.tuxfamily.org/api/InsideEigenExample.html
Cheers,
Benoit
---