Exemplo n.º 1
0
 public unsafe float NativeDist2Perf()
 {
     fixed(float *psrc = src)
     fixed(float *pdst = dst)
     {
         return(CpuMathNativeUtils.Dist2(psrc, pdst, LEN));
     }
 }
Exemplo n.º 2
0
 public unsafe float Dist2()
 {
     fixed(float *psrc = src)
     fixed(float *pdst = dst)
     {
         return(CpuMathNativeUtils.Dist2(psrc, pdst, Length));
     }
 }