Re: [eigen] bug in data() on col/row |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] bug in data() on col/row
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Sun, 30 Aug 2009 22:00:05 +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 :date:message-id:subject:from:to:content-type; bh=W3Pfe6/OC2xXU+HUprKR5xrGRs4+dhDTnaYfhoamHVE=; b=WQ95B+gk5hcZ7QimWX8rAEXWVM1rdVUgm9nL+DEpb22VwfI7/QzYJuEBvbLlpsWLDA N9AWRLWSbN/Zl8RcoNWsD+3wRfw/a097dRgR0EHLRdM0fUT2iiVGjkelSEsyF/fZqC8L TH23EPBkdAA/dz2zmr13Sh4/utreC9CGZtbWc=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=mpalf6MOBjSgHEDqCQtp7JrKVIfohL7I44U3iWH84maiUqGlh7jcT4TbzLEvshqYWE TSNqB+m1azyhUVtSrsvRO9s14SQDBU3yzl7rn/SDHnnZoLUZ3ljepVt8FTOYW5Ob3C1N nPrpCsAl2i2LOvHhZy2W2+8rC7WyJVcnxk2A8=
hi,
actually, it does not make sense to use .data() without .stride()
unless you know what you are doing (i.e., your data is sequentially
stored in memory).
However, yes I know that:
1 - there is a bug in .stride() for vectors
2 - the doc about .data() and .stride() have to be improved
gael.
On Sun, Aug 30, 2009 at 5:54 PM, Benjamin
Schindler<bschindler@xxxxxxxxxxx> wrote:
>
>
> Benoit Jacob wrote:
>>
>> 2009/8/30 Benjamin Schindler <bschindler@xxxxxxxxxxx>:
>>
>>>
>>> Hi
>>>
>>> Well, I know that this was my expectation - and I'm fully aware that this
>>> code is kinda bogus. But on the other hand, writing
>>>
>>> somematrix.row(2).data() does give the expectation that you get that row
>>> data (as this is what the code is trying to tell me).
>>> That's why I wrote that mail - I think that code is unsafe and can lead
>>> to
>>> "unexpected" behaviour and if there is something Eigen can do about this,
>>> it
>>> should be done
>>>
>>
>> Ah, OK, I understand your point. Sorry I didn't get it the first time.
>>
>> But what can Eigen do, when it sees data() being called on a
>> non-memory-contiguous block, such as a row in a column-major matrix?
>>
>> Should it just forbid that (with an assertion) ?
>> That's open for discussion. There is an argument against, though:
>> there's a use case for using data() to retrieve the address of the
>> first coefficient in the row, and then iterate by incrementing this
>> pointer by the size of a column, to traverse the row.
>>
>
> Now when I think more about it, the problem of detecting whether a block is
> contiguous or not is not that easy. If the block is contiguous, the code is
> just fine, so it should be accepted. So throwing an assert based on that if
> would make sense to me.
> For your use case: I think the use case is valid, but there are many other
> ways of doing this, like: &m(2,0) + cols*i (which I consider a much better
> way as the code tells you directly what storage order is expected)
>
> Opinions?
>
> Benjamin
>
>
>
>> Benoit
>>
>>
>>
>
>
>