Re: [eigen] Eigen containers cannot be vectorized |
[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]
On 2016-12-08 15:03, Francois Fayard wrote:I was also surprised to see that in debug mode, bounds checking is done with: assert(i >=0 && i < n). This can be optimized into assert(static_cast<std::size_t>(i) < static_cast<std::size_t>(n)). No compiler cannot do that as the optimization from the first _expression_ to the second one is only valid when n is nonnegative. François Fayard Founder & Consultant - Inside Loop |
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |