21 references to LoadAlignedVector128
Microsoft.ML.CpuMath (20)
AvxIntrinsics.cs (2)
319Vector128<float> h01 = Sse.LoadAlignedVector128(pSrcCurrent); 367h01 = Sse.LoadAlignedVector128(pSrcCurrent);
SseIntrinsics.cs (18)
173Vector128<float> x01 = Sse.LoadAlignedVector128(pMatTemp); 174Vector128<float> x11 = Sse.LoadAlignedVector128(pMatTemp += ccol); 175Vector128<float> x21 = Sse.LoadAlignedVector128(pMatTemp += ccol); 176Vector128<float> x31 = Sse.LoadAlignedVector128(pMatTemp += ccol); 177Vector128<float> x02 = Sse.LoadAlignedVector128(pSrcCurrent); 275Vector128<float> x01 = Sse.LoadAlignedVector128(pSrcCurrent); 289Vector128<float> x02 = Sse.LoadAlignedVector128(pMatTemp); 290Vector128<float> x12 = Sse.LoadAlignedVector128(pMatTemp += crow); 291Vector128<float> x22 = Sse.LoadAlignedVector128(pMatTemp += crow); 292Vector128<float> x32 = Sse.LoadAlignedVector128(pMatTemp += crow); 313x01 = Sse.LoadAlignedVector128(pSrcCurrent); 326Vector128<float> x02 = Sse.LoadAlignedVector128(pMatTemp); 327Vector128<float> x12 = Sse.LoadAlignedVector128(pMatTemp += crow); 328Vector128<float> x22 = Sse.LoadAlignedVector128(pMatTemp += crow); 329Vector128<float> x32 = Sse.LoadAlignedVector128(pMatTemp += crow); 330Vector128<float> x3 = Sse.LoadAlignedVector128(pDstCurrent); 449Vector128<float> temp = Sse.LoadAlignedVector128(pDstCurrent); 849result = Sse.Add(result, Sse.LoadAlignedVector128(pValues));
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Sse.cs (1)
362public static unsafe Vector128<float> LoadAlignedVector128(float* address) => LoadAlignedVector128(address);