Closed
Description
Style changes needed to solve part of #823
Details
- Make while loops more efficient in
src\Microsoft.ML.CpuMath\SseIntrinsics.cs
andsrc\Microsoft.ML.CpuMath\AvxIntrinsics.cs
with modified bound checking:
var remainder = count % elementsPerIteration;
float* pEnd = pdst + (count - remainder);
while (pDstCurrent < pEnd)
{ … }