public void ParallelForPartitioned() { ArraySum.ParallelForPartioned(ArrayA, ArrayB); }
public void SimdFor() { var outArray = ArraySum.SimdFor(ArrayA, ArrayB); }
public void ForLoopReversePostIncrement() { ArraySum.ForLoopReversePostIncrement(ArrayA, ArrayB); }
public void ForLoopReverse() { ArraySum.ForLoopReverse(ArrayA, ArrayB); }
public void ForLoopConst() { ArraySum.ForLoopConst(ArrayA, ArrayB); }
public void ForLoop() { ArraySum.ForLoop(ArrayA, ArrayB); }
public void ParallelSimdFor() { var outArray = ArraySum.ParallelSimdFor(ArrayA, ArrayB); }