[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Testing 2.0
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Fri, 12 Feb 2010 07:19:20 -0500
- 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 :content-transfer-encoding; bh=Wbnps0QCqGkoaYom3yCH5MNJDhW0VWIzw9hUVZH7+Uk=; b=wz+B3J9vnQL/SNIBGy5A5mtL+m6uPF8OnebSikJcHMsIi6+sWJ0jHEeYPe1pKpRewv cQJlvcEwCWizrMG1rewRJzxb+0H2nuxhyXkeRu5rMqsc7aM/5o33dEZmQCpbQxrIqatF neWuEZzN573bI2dppq1EnLOg9WQokIVQQ/EEw=
- 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:content-transfer-encoding; b=mBZPInvzCdQHITPZhcAavLilB/DLkSMX5Eq4FSPPb1UQKkDyqCt7gNI+OKwkLfBw4S NCNC3olpZzuUy9CV/us9ukokLN8B8+KmpdRQ3w0ybW7rTp7MA2gge2h4kWL4TuMvmrIi 2KNvGudU0CZGi2xQm3BVP8v8v8V+/dP9l1B34=
2010/2/12 Thomas Capricelli <orzel@xxxxxxxxxxxxxxx>:
>
> ah... i was trying to get it fixed, but couldn't find.. I confirm it now works here too. thx!
>
> Concerning icc, the gentoo package is worth 3924 files and 260mb (only?) and i just took a 'free' license on the intel website to get it running.
I'm aware of the free-as-in-free-evaluation license, I had to got one
too, but the download is 760 MB also when you download it directly
from Intel's website, and is 2.8GB once uncompressed, so I wonder how
you got the smaller version!
And, 260mb would /already/ be ridiculous :)
Benoit
>
> ++
> Thomas
> --
> Thomas Capricelli <orzel@xxxxxxxxxxxxxxx>
> http://www.freehackers.org/thomas
>
> In data venerdì 12 febbraio 2010 01:31:10, Benoit Jacob ha scritto:
>> Fixed, or rather worked-around. It really was a stupid bug in ICC
>>
>> diff:
>>
>> template<typename OtherDerived>
>> inline void Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows,
>> _MaxCols>::swap(const MatrixBase<OtherDerived>& other)
>> {
>> - ei_matrix_swap_impl<Matrix, OtherDerived>::run(*this,
>> *const_cast<MatrixBase<OtherDerived>*>(&other));
>> + // the Eigen:: here is to work around a stupid ICC 11.1 bug.
>> + Eigen::ei_matrix_swap_impl<Matrix, OtherDerived>::run(*this,
>> *const_cast<MatrixBase<OtherDerived>*>(&other));
>> }
>
>
>
>