Re: [eigen] Small dynamic matrix optimization |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Small dynamic matrix optimization
- From: Edward Lam <edward@xxxxxxxxxx>
- Date: Wed, 20 Nov 2019 09:02:17 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sidefx.com; s=google; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-language:content-transfer-encoding; bh=UFwEK52iFG/f8sIxcrlE/hV/EKFZJZQfHYFHd6WMWbk=; b=FEfFBT469TDKkb/YijBvTCRXgi8PiGSylerqQ2Dssr23RKCqWibkKFwy4mZsk7uz47 q+4VwJhUEL+5xbhfuL6uTWn2k0lTF7kvisjXoMSuITzClvxRy4wR5szDhyQsjq2EQaSW /pGeJ79HftRzizjm77JLnOCIe8IlGwHj8WHT5obsOI8ADjjDlHxfuUHyGbYB0UYeWqJF kRYv2VHQ+hRsq+qejWLlxvi+3kd1j51ZEt1fSNcXP1yr9IL6hb7EGmAOpTHP8iJ9p17l 1fsfYQZZu1P4yZ27mgkZqidSw0ckydu7gOOU2gEYL/Lhgjwbm4pGW+HuRCVMjaedHWOH 12jw==
On 11/20/2019 8:09 AM, Gael Guennebaud wrote:
Also related to this general question, it would be interesting to
implement our own stack to hold dynamic-allocated temporaries. Such
temporaries would not be moveable, so we have to be very careful to use
this mechanism only for temporaries we manage from birth to death.
This also leads into the question of whether it would be useful to make
Eigen allocator-aware as well. I've only been looking at this from the
sidelines from watching the CppCon presentations though but it's
interesting.
-Edward