Processing dotnet/runtime#121308 (comment) command:
Command
-aws_amd -profiler
using System;
using BenchmarkDotNet.Attributes;
public class Benchmarks
{
public static IEnumerable<object> SingleValues => new object[]
{
float.Epsilon,
};
[Benchmark]
[ArgumentsSource(nameof(SingleValues))]
[MemoryRandomization]
public string ToStringSingle(float value) => value.ToString();
}
(EgorBot will reply in this issue)