mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
remove debug output. sorry!
This commit is contained in:
parent
ff94eaa4ae
commit
80d1f9e966
@ -389,19 +389,11 @@ struct ei_assign_impl<Derived1, Derived2, LinearVectorizedTraversal, NoUnrolling
|
|||||||
: ei_first_aligned(&dst.coeffRef(0), size);
|
: ei_first_aligned(&dst.coeffRef(0), size);
|
||||||
const int alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
|
const int alignedEnd = alignedStart + ((size-alignedStart)/packetSize)*packetSize;
|
||||||
|
|
||||||
EIGEN_DEBUG_VAR(&dst.coeffRef(0));
|
|
||||||
EIGEN_DEBUG_VAR(size);
|
|
||||||
EIGEN_DEBUG_VAR(packetSize);
|
|
||||||
EIGEN_DEBUG_VAR(alignedStart);
|
|
||||||
EIGEN_DEBUG_VAR(alignedEnd);
|
|
||||||
|
|
||||||
for(int index = 0; index < alignedStart; ++index)
|
for(int index = 0; index < alignedStart; ++index)
|
||||||
dst.copyCoeff(index, src);
|
dst.copyCoeff(index, src);
|
||||||
|
|
||||||
for(int index = alignedStart; index < alignedEnd; index += packetSize)
|
for(int index = alignedStart; index < alignedEnd; index += packetSize)
|
||||||
{
|
{
|
||||||
EIGEN_DEBUG_VAR(index);
|
|
||||||
EIGEN_DEBUG_VAR(&dst.coeffRef(index));
|
|
||||||
dst.template copyPacket<Derived2, Aligned, ei_assign_traits<Derived1,Derived2>::SrcAlignment>(index, src);
|
dst.template copyPacket<Derived2, Aligned, ei_assign_traits<Derived1,Derived2>::SrcAlignment>(index, src);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user