-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Processing dotnet/runtime#117160 (comment) command:
Command
-intel -commit main -intel -mono --envvars MONO_VERBOSE_METHOD:Div
using BenchmarkDotNet.Attributes;
public class Bench
{
uint value = 64;
[Benchmark]
public uint Div() => value / 8;
[Benchmark]
public uint Mod() => value % 8;
[Benchmark]
public uint Div_opt() => value >> 3;
[Benchmark]
public uint Mod_opt() => value & 7;
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels