Processing dotnet/runtime#108153 (comment) command:
Command
-intel
[MemoryDiagnoser]
public class Bench
{
IList<int> list = new int[1024];
[Benchmark]
public int Test()
{
int sum = 0;
foreach (var i in list)
sum += i;
return sum;
}
}
(EgorBot will reply in this issue)