Exemple #1
0
 [Benchmark] public void ExecuteMultiply() => SIMD.ExecuteOnSets(ref a, ref b, ref c, (a, b) => a * b);
Exemple #2
0
 [Benchmark] public void ExecuteAdd() => SIMD.ExecuteOnSets(ref a, ref b, ref c, (a, b) => a + b);