예제 #1
0
 public unsafe float NativeSumUPerf()
 {
     fixed(float *psrc = src)
     {
         return(CpuMathNativeUtils.SumU(psrc, LEN));
     }
 }
 public unsafe float SumU()
 {
     fixed(float *psrc = src)
     {
         return(CpuMathNativeUtils.SumU(psrc, Length));
     }
 }