Re: [eigen] conservative resize ... |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] conservative resize ...
- From: Márton Danóczy <marton78@xxxxxxxxx>
- Date: Mon, 7 Sep 2009 15:04:03 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=clsHOvE+Uo/uo+rjCAiJ+Qu5eJmYFqxgxUZTKO1Jw6o=; b=SOOhhv9h/qIMwPuhuOyiN75gJNpzMcJ5YcDIHh4hzZ5IQlJREoaE3YwPy3JnFskSnP EyhKyai0qObwtr4wqPKkK1gl1WskF8+pndVn6MgpZSaVYMELVLQfVr4Wbt0PRwnUiQ4f 47qQtV8weDXN6KCv+iHmnYMX9R0TdlJ0wN+No=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=p8mBdEFqv47RdW5dtEvEqKxifrX+PEuCRvtrx17Vo8t5cSrtp68r3kT3hGpxB7QSE9 oUbKQ40jNqDUvPnoxm75q2W4ZSepku2VT+w8LMtyKFTBuwjFYQ5hv5QSv2/SdYmDAOem wco5r0PNr2DghOSf0bOiyYGB0D0dQjnypV0bw=
great idea, +1!
2009/9/7 Gael Guennebaud <gael.guennebaud@xxxxxxxxx>:
> hi,
>
> what about the following:
>
> - we keep only the two simple conservativeResize() overloads taking
> only size arguments
>
> - we add one template overload:
>
> template<typename OtherDerived>
> void conservativeResize(const MatrixBase<OtherDerived>& other);
>
> resizing *this to match the sizes of other, and filling the extended
> parts from the respective parts of other. Typical use cases:
>
> Mat m;
>
> // ...
>
> // extend with 0 (similar to the current m.conservativeResize(r, c, true))
> m.conservativeResize(Mat::Zero(r,c));
>
> // extend with x:
> m.conservativeResize(Mat::Constant(r, c, x));
>
> // and some more complex examples:
> m.conservativeResize(Mat::Identity(r,c));
> m.conservativeResize(Mat::Random(r,c));
>
> The drawback is that it makes the "extend with zeros" a bit more verbose.
> Alos, perhaps conservativeResize() is not a very good name for this
> overload, but what do you think about this idea ?
>
> cheers,
> gael.
>
>
>
> On Mon, Sep 7, 2009 at 1:52 PM, Hauke Heibel<hauke.heibel@xxxxxxxxxxxxxx> wrote:
>> On Mon, Sep 7, 2009 at 1:34 PM, Márton Danóczy<marton78@xxxxxxxxx> wrote:
>>> You're right, initializing a matrix after resizing should suffice, if
>>> it is not slower than doing both in one step.
>>
>> It is possible and would probably be even faster - if done correctly.
>> I am just saying this because you would need to take care of
>> initializing only those parts of the matrix which are yet
>> uninitialized. At the moment, when pre-initializing with zeros, the
>> parts of the old and resized matrices that overlap are accessed twice.
>> Once for initializing with zeros and a second time to copy the old
>> values.
>>
>> @Benoit, ExtendByZero is fine. I am just wondering, was there a
>> particular reason for making NoChange_t a struct? Should we follow the
>> same strategy to ExtendByZero?
>>
>> - Hauke
>>
>>
>>
>
>
>