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