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