Andrey Akinshin
Andrey Akinshin
The default template contains the following line: ```html ``` However, if we put a `favicon.ico` file in the root src folder, it will not be copied to the output folder....
Requested [here](https://github.com/dotnet/BenchmarkDotNet/issues/2026#issuecomment-1169003153).
Currently, I'm working on reducing the default value for `MinIterationTime` (the current value is 500 ms). I believe that we could achieve the same level of accuracy with a lower...
Currently, we have the following [heuristic](https://github.com/dotnet/BenchmarkDotNet/blob/v0.13.1/src/BenchmarkDotNet/Engines/EngineFactory.cs#L55): if the duration of the first `WorkloadJitting` iteration is more than `IterationTime` (which is [500ms](https://github.com/dotnet/BenchmarkDotNet/blob/v0.13.1/src/BenchmarkDotNet/Engines/EngineResolver.cs#L13) by default), we skip the `Pilot` stage and perform...
`MemoryDiagnoserTests.AssertAllocations` frequently fails GitHub/Windows builds. Test examples: `EngineShouldNotIntroduceBoxing`, `AwaitingTasksShouldNotInterfereAllocationResults`. Some recently failed builds: https://github.com/dotnet/BenchmarkDotNet/runs/5218066245 ``` 2022-02-16T15:25:05.7264604Z [xUnit.net 00:19:53.52] EngineShouldNotIntroduceBoxing(toolchain: InProcessEmitToolchain) [FAIL] 2022-02-16T15:25:06.4522717Z Failed EngineShouldNotIntroduceBoxing(toolchain: InProcessEmitToolchain) [3 s] 2022-02-16T15:25:06.4523163Z Error Message:...
Now BenchmarkDotNet allows to create a nice set of jobs for different environments. However, sometimes it's impossible to get all desired result with a single run. Examples: * Comparing performance...
It would be nice to have inline footnotes (aka inline notes). Here is the relevant pandoc example: ```md Here is an inline note.^[Inlines notes are easier to write, since you...
The RDotNet.Graphics library looks great, but it is only for WinForms. Do you have plans to implement same feature for WPF?
Is it possible to create a paginator for a specific category?
At the moment, the TestAdapter shows statistics for independent benchmark runs (leave nodes of the tree), but doesn't show anything for grouping nodes. It would be nice to automatically show...