You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using System;
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
BenchmarkRunner.Run<Bench>(args: args);
public class Bench
{
[Benchmark]
public void Foo()
{
for (int i = 0; i < 1000; i++)
Work<char>(1);
}
[MethodImpl(MethodImplOptions.NoInlining)]
static void Work<T>(int size) => GC.KeepAlive(GC.AllocateUninitializedArray<T>(size));
}
The text was updated successfully, but these errors were encountered:
@jkotas arm64 is still building (it's Ampere Altra so slower than Xeon) and will be reported here once finished, while Xeon (-intel) failed internally while I was updating the bot, so I restarted it and the results has been posted here: #13 (comment)
Processing dotnet/runtime#107218 (comment):
-intel -arm64 -perf
The text was updated successfully, but these errors were encountered: