Skip to content

Commit

Permalink
Merge pull request #35 from simdutf/clean_benchmark
Browse files Browse the repository at this point in the history
fix: improve bitmap output by widening the columns
  • Loading branch information
lemire authored May 27, 2024
2 parents 7d11046 + 1a59806 commit e5f5b39
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions benchmark/Benchmark.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,15 +256,10 @@ public unsafe void SIMDUtf8ValidationRealDataAvx512()
}
public class Program
{
// TODO: adopt BenchmarkSwitcher https://benchmarkdotnet.org/articles/guides/how-to-run.html
/*public static void Main(string[] args)
{
var config = DefaultConfig.Instance.WithSummaryStyle(SummaryStyle.Default.WithMaxParameterColumnWidth(100));
BenchmarkRunner.Run<RealDataBenchmark>(config);
}*/
static void Main(string[] args) => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
static void Main(string[] args) => BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args, DefaultConfig.Instance
.WithSummaryStyle(SummaryStyle.Default.WithMaxParameterColumnWidth(100)));


}

}
}

0 comments on commit e5f5b39

Please sign in to comment.