Adam Sitnik

Results 313 comments of Adam Sitnik

Hi @bradykelly `v0.10.3.13-nightly` is a very old package, please try 0.**13.1**.1667

@bradykelly have you tried attaching a debugger to the benchmark process? (not the host process, but to the benchmark process). Here is how you can do it: https://benchmarkdotnet.org/articles/guides/troubleshooting.html#launch-a-debugger-from-the-benchmark-process-using-debugger-api

@heaths that's a very good point. Would you like to send a PR? The code is available here: https://github.com/dotnet/BenchmarkDotNet/blob/master/templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.CSharp/Program.cs https://github.com/dotnet/BenchmarkDotNet/blob/master/templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.FSharp/Program.fs https://github.com/dotnet/BenchmarkDotNet/blob/master/templates/templates/BenchmarkDotNet.BenchmarkProjectTemplate.VB/Program.vb

> Hmmm, why can it be happening though? To find out you need to debug the disassembler, here is how you can do it: https://benchmarkdotnet.org/articles/contributing/disassembler.html#how-to-debug-the-disassembler

> If you consider to fix it, I may create a PR. @emreyigit A PR would be welcomed! You might also consider filtering out `HardwareCounter.NotSet` in the `AddHardwareCounters` method: https://github.com/dotnet/BenchmarkDotNet/blob/63e28c100a42a6492d09a0b93a8a4c141061bb0d/src/BenchmarkDotNet/Configs/ManualConfig.cs#L172-L175

I won't have time to take a look at this in the near future. It would be great if you could run some troubleshooting described here: https://benchmarkdotnet.org/articles/guides/troubleshooting.html It's really strange...

Hi @ltrzesniewski .NET Standard is an abstraction. To run a console app, you need to specify the runtime, which provides the implementation of the abstraction. So there is no way...

I would divide it into three problems: - Ensure that the benchmarks are always going to be executed using the same hardware, so the results are comparable. For example, in...

Hi @silvennoinen Are you sing .NET Framework or .NET Core?