This commit is contained in:
Gael Guennebaud 2018-11-14 14:43:18 +01:00
parent 449f948b2a
commit 7fddc6a51f
2 changed files with 2 additions and 2 deletions

View File

@ -532,7 +532,7 @@ struct dense_assignment_loop<Kernel, SliceVectorizedTraversal, NoUnrolling>
const Scalar *dst_ptr = kernel.dstDataPtr(); const Scalar *dst_ptr = kernel.dstDataPtr();
if((!bool(dstIsAligned)) && (UIntPtr(dst_ptr) % sizeof(Scalar))>0) if((!bool(dstIsAligned)) && (UIntPtr(dst_ptr) % sizeof(Scalar))>0)
{ {
// the pointer is not aligend-on scalar, so alignment is not possible // the pointer is not aligned-on scalar, so alignment is not possible
return dense_assignment_loop<Kernel,DefaultTraversal,NoUnrolling>::run(kernel); return dense_assignment_loop<Kernel,DefaultTraversal,NoUnrolling>::run(kernel);
} }
const Index packetAlignedMask = packetSize - 1; const Index packetAlignedMask = packetSize - 1;

View File

@ -314,7 +314,7 @@ polygamma(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedN> &n) const
* *
* It returns the Riemann zeta function of two arguments \c *this and \a q: * It returns the Riemann zeta function of two arguments \c *this and \a q:
* *
* \param *this is the exposent, it must be > 1 * \param *this is the exponent, it must be > 1
* \param q is the shift, it must be > 0 * \param q is the shift, it must be > 0
* *
* \note This function supports only float and double scalar types. To support other scalar types, the user has * \note This function supports only float and double scalar types. To support other scalar types, the user has