Adam Sitnik

Results 236 comments of Adam Sitnik

I have few questions regarding: ```cs public partial class File { public static FileInfo CreateTempFile(string? prefix = null, string? suffix = null); } ``` I wonder what the typical scenario...

The same is true for `System.MathBenchmarks.Double.ILogB` and `System.MathBenchmarks.Single.ILogB` | Result | Base | Diff | Ratio | Alloc Delta | Modality | Operating System | Bit | Processor Name |...

@tannergooding macOS perf is not our top priority, but it would be good to know where the regression comes from (I guess that from the `ILogB` changes, but why is...

I wanted to benchmark WASM AOT today to unblock https://github.com/dotnet/runtime/pull/73556#issuecomment-1208101529 1. We have zero docs in both dotnet/BenchmarkDotNet and dotnet/performance that describe how to do it. 2. I have read...

> This is needed - . It's already in the `nuget.config`: https://github.com/dotnet/performance/blob/3e63b12c2cfe8d3f4f8b6083e49ab28b5111cedd/NuGet.config#L9

@radical thanks for sharing your steps! I got to the point where I was getting: ```log [2022/09/10 13:25:05][INFO] .withExitOnUnhandledError() [2022/09/10 13:25:05][INFO] ^ [2022/09/10 13:25:05][INFO] TypeError: dotnet.withVirtualWorkingDirectory(...).withEnvironmentVariables(...).withDiagnosticTracing(...).withExitOnUnhandledError is not a function...

@MichalPetryka You are right, we should at least print a nice error. And ideally implement the support. @MichalStrehovsky @jkotas Do you know if there is any existing .NET library that...

BenchmarkDotNet does not allow for pre-building the benchmarks and running them on a different machine. The results are always specific to current config, this is why we print so much...

> A possible solution would be to generate a separate .Net app that'd perform the CPU checks and return the data to the Net Framework host. To be honest I...

> AFAIK you have to use a Net Framework host in order to use it in a benchmark, so doing benchmarks with 2 hosts is at least annoying You don't:...