Skip to content

Commit

Permalink
Merge pull request #39 from TimothyMakkison/update
Browse files Browse the repository at this point in the history
Modernisation/Performance boost POC
  • Loading branch information
hadashiA authored Aug 18, 2023
2 parents 5a4b124 + 3698799 commit 4449a82
Show file tree
Hide file tree
Showing 8 changed files with 561 additions and 139 deletions.
2 changes: 1 addition & 1 deletion benchmark/PerfBenchmark/BenchmarkConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public BenchmarkConfig()
var baseConfig = Job.ShortRun.WithIterationCount(1).WithWarmupCount(1);

// Add(baseConfig.With(Runtime.Clr).With(Jit.RyuJit).With(Platform.X64));
Add(baseConfig.With(Runtime.Core).With(Jit.RyuJit).With(Platform.X64));
Add(baseConfig.With(Jit.RyuJit).With(Platform.X64));

Add(MarkdownExporter.GitHub);
Add(CsvExporter.Default);
Expand Down
6 changes: 3 additions & 3 deletions benchmark/PerfBenchmark/PerfBenchmark.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFrameworks>netcoreapp3.1;net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.11.4" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="NUlid" Version="1.3.2" />
</ItemGroup>

Expand Down
Loading

0 comments on commit 4449a82

Please sign in to comment.