public unsafe void NativeAddSUPerf()
 {
     fixed(float *psrc = src)
     fixed(float *pdst = dst)
     fixed(int *pidx   = idx)
     {
         CpuMathNativeUtils.AddSU(psrc, pidx, pdst, IDXLEN);
     }
 }
示例#2
0
 public unsafe void AddSU()
 {
     fixed(float *psrc = src)
     fixed(float *pdst = dst)
     fixed(int *pidx   = idx)
     {
         CpuMathNativeUtils.AddSU(psrc, pidx, pdst, IndexLength);
     }
 }