mirror of
https://github.com/aaru-dps/AaruBenchmark.git
synced 2025-12-16 19:24:36 +00:00
Updated to .NET 10.
This commit is contained in:
@@ -17,8 +17,8 @@
|
|||||||
<Product>Aaru Data Preservation Suite</Product>
|
<Product>Aaru Data Preservation Suite</Product>
|
||||||
<Title>Aaru6.Checksums</Title>
|
<Title>Aaru6.Checksums</Title>
|
||||||
<ApplicationVersion>$(Version)</ApplicationVersion>
|
<ApplicationVersion>$(Version)</ApplicationVersion>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<LangVersion>10</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Description>C# implementation of CRC16, CRC32, CRC64, Fletcher, MD5, SHA1, SHA2 and SpamSum.</Description>
|
<Description>C# implementation of CRC16, CRC32, CRC64, Fletcher, MD5, SHA1, SHA2 and SpamSum.</Description>
|
||||||
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/aaru-dps/</PackageProjectUrl>
|
||||||
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Aaru.Checksums.Native" Version="6.0.0-alpha.10"/>
|
<PackageReference Include="Aaru.Checksums.Native" Version="6.0.0-alpha.10"/>
|
||||||
<PackageReference Include="Aaru.CommonTypes" Version="5.3.2"/>
|
<PackageReference Include="Aaru.CommonTypes" Version="5.3.2"/>
|
||||||
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3" PrivateAssets="all"/>
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.4" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<MonoDevelop>
|
<MonoDevelop>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>netcoreapp3.1;net8.0</TargetFrameworks>
|
<TargetFrameworks>netcoreapp3.1;net10.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
@@ -10,19 +10,11 @@
|
|||||||
<PackageReference Include="Aaru.Checksums" Version="5.3.2"/>
|
<PackageReference Include="Aaru.Checksums" Version="5.3.2"/>
|
||||||
<PackageReference Include="Aaru.Compression" Version="5.3.2"/>
|
<PackageReference Include="Aaru.Compression" Version="5.3.2"/>
|
||||||
<PackageReference Include="Aaru.Compression.Native" Version="6.0.0-alpha.10"/>
|
<PackageReference Include="Aaru.Compression.Native" Version="6.0.0-alpha.10"/>
|
||||||
<PackageReference Include="BenchmarkDotNet" Version="0.13.12"/>
|
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
|
||||||
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.12"/>
|
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.2" />
|
||||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0"/>
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="10.0.0-preview.6.25358.103" />
|
||||||
</ItemGroup>
|
<PackageReference Include="DotNetZip" Version="1.16.0" />
|
||||||
|
<PackageReference Include="SharpCompress" Version="0.40.0" />
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' ">
|
|
||||||
<PackageReference Include="DotNetZip" Version="1.13.8"/>
|
|
||||||
<PackageReference Include="SharpCompress" Version="0.37.2"/>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
|
||||||
<PackageReference Include="DotNetZip" Version="1.16.0"/>
|
|
||||||
<PackageReference Include="SharpCompress" Version="0.37.2"/>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -72,7 +64,7 @@
|
|||||||
</Content>
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
|
||||||
<ProjectReference Include="..\Aaru6.Checksums\Aaru6.Checksums.csproj"/>
|
<ProjectReference Include="..\Aaru6.Checksums\Aaru6.Checksums.csproj"/>
|
||||||
<ProjectReference Include="..\Aaru6.Compression\Aaru6.Compression.csproj"/>
|
<ProjectReference Include="..\Aaru6.Compression\Aaru6.Compression.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ using BenchmarkDotNet.Environments;
|
|||||||
using BenchmarkDotNet.Jobs;
|
using BenchmarkDotNet.Jobs;
|
||||||
using BenchmarkDotNet.Toolchains.CsProj;
|
using BenchmarkDotNet.Toolchains.CsProj;
|
||||||
using BenchmarkDotNet.Toolchains.DotNetCli;
|
using BenchmarkDotNet.Toolchains.DotNetCli;
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using AaruBenchmark.Compression;
|
using AaruBenchmark.Compression;
|
||||||
|
|
||||||
// ReSharper disable ArrangeNamespaceBody
|
// ReSharper disable ArrangeNamespaceBody
|
||||||
@@ -84,8 +84,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -93,7 +93,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class ADCBenchs
|
public class ADCBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -118,8 +118,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -127,7 +127,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class AppleRleBenchs
|
public class AppleRleBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -152,8 +152,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -161,7 +161,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class TeleDiskLzhBenchs
|
public class TeleDiskLzhBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -180,8 +180,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -189,7 +189,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class GzipBenchs
|
public class GzipBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -208,8 +208,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class CompressGzipBenchs
|
public class CompressGzipBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -236,8 +236,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -245,7 +245,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Bzip2Benchs
|
public class Bzip2Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -270,8 +270,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -279,7 +279,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class CompressBzip2Benchs
|
public class CompressBzip2Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -304,8 +304,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -316,7 +316,7 @@ namespace AaruBenchmark
|
|||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.SharpCompress.Lzip();
|
public void Aaru() => Compression.SharpCompress.Lzip();
|
||||||
|
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.Lzip();
|
public void AaruNative() => Compression.AaruNative.Lzip();
|
||||||
#else
|
#else
|
||||||
@@ -329,8 +329,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -341,7 +341,7 @@ namespace AaruBenchmark
|
|||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.SharpCompress.CompressLzip();
|
public void Aaru() => Compression.SharpCompress.CompressLzip();
|
||||||
|
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.CompressLzip();
|
public void AaruNative() => Compression.AaruNative.CompressLzip();
|
||||||
#else
|
#else
|
||||||
@@ -354,8 +354,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -365,7 +365,7 @@ namespace AaruBenchmark
|
|||||||
{
|
{
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.SharpCompress.Lzma();
|
public void Aaru() => Compression.SharpCompress.Lzma();
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.Lzma();
|
public void AaruNative() => Compression.AaruNative.Lzma();
|
||||||
#else
|
#else
|
||||||
@@ -378,8 +378,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -390,7 +390,7 @@ namespace AaruBenchmark
|
|||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.SharpCompress.CompressLzma();
|
public void Aaru() => Compression.SharpCompress.CompressLzma();
|
||||||
|
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.CompressLzma();
|
public void AaruNative() => Compression.AaruNative.CompressLzma();
|
||||||
#else
|
#else
|
||||||
@@ -403,8 +403,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -415,7 +415,7 @@ namespace AaruBenchmark
|
|||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.Aaru.Flac();
|
public void Aaru() => Compression.Aaru.Flac();
|
||||||
|
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.Flac();
|
public void AaruNative() => Compression.AaruNative.Flac();
|
||||||
#else
|
#else
|
||||||
@@ -428,8 +428,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -440,7 +440,7 @@ namespace AaruBenchmark
|
|||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => Compression.Aaru.CompressFlac();
|
public void Aaru() => Compression.Aaru.CompressFlac();
|
||||||
|
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void AaruNative() => Compression.AaruNative.CompressFlac();
|
public void AaruNative() => Compression.AaruNative.CompressFlac();
|
||||||
#else
|
#else
|
||||||
@@ -453,8 +453,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -462,7 +462,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Adler32Benchs
|
public class Adler32Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -487,8 +487,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -496,7 +496,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Fletcher16Benchs
|
public class Fletcher16Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -521,8 +521,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -530,7 +530,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Fletcher32Benchs
|
public class Fletcher32Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -555,8 +555,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -564,7 +564,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Crc16CcittBenchs
|
public class Crc16CcittBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -589,8 +589,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -598,7 +598,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Crc16Benchs
|
public class Crc16Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -623,8 +623,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -632,7 +632,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Crc32Benchs
|
public class Crc32Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -657,8 +657,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -666,7 +666,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class Crc64Benchs
|
public class Crc64Benchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -691,8 +691,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -708,8 +708,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -725,8 +725,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -742,8 +742,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -759,8 +759,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -776,8 +776,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
|
|
||||||
@@ -785,7 +785,7 @@ namespace AaruBenchmark
|
|||||||
// [NativeMemoryProfiler]
|
// [NativeMemoryProfiler]
|
||||||
public class SpamSumBenchs
|
public class SpamSumBenchs
|
||||||
{
|
{
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
[Benchmark]
|
[Benchmark]
|
||||||
public void Aaru() => throw new NotImplementedException();
|
public void Aaru() => throw new NotImplementedException();
|
||||||
|
|
||||||
@@ -810,8 +810,8 @@ namespace AaruBenchmark
|
|||||||
[Core31RosettaJob]
|
[Core31RosettaJob]
|
||||||
[Core31WoA]
|
[Core31WoA]
|
||||||
[Core31Arm]
|
[Core31Arm]
|
||||||
[SimpleJob(RuntimeMoniker.Net80)]
|
[SimpleJob(RuntimeMoniker.Net10_0)]
|
||||||
[SimpleJob(RuntimeMoniker.NativeAot80)]
|
[SimpleJob(RuntimeMoniker.NativeAot10_0)]
|
||||||
[MemoryDiagnoser(false)]
|
[MemoryDiagnoser(false)]
|
||||||
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
[HideColumns("Job", "Error", "StdDev", "Median", "RatioSD", "Alloc Ratio")]
|
||||||
[SuppressMessage("ReSharper", "ConvertClosureToMethodGroup")]
|
[SuppressMessage("ReSharper", "ConvertClosureToMethodGroup")]
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using System.IO;
|
|||||||
using Aaru.Compression;
|
using Aaru.Compression;
|
||||||
using CUETools.Codecs;
|
using CUETools.Codecs;
|
||||||
using CUETools.Codecs.Flake;
|
using CUETools.Codecs.Flake;
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using Aaru6.Checksums;
|
using Aaru6.Checksums;
|
||||||
#else
|
#else
|
||||||
using Aaru.Checksums;
|
using Aaru.Checksums;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Aaru6.Checksums;
|
using Aaru6.Checksums;
|
||||||
using Aaru6.Compression;
|
using Aaru6.Compression;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ using SharpCompress.Compressors.ADC;
|
|||||||
using SharpCompress.Compressors.BZip2;
|
using SharpCompress.Compressors.BZip2;
|
||||||
using SharpCompress.Compressors.Deflate;
|
using SharpCompress.Compressors.Deflate;
|
||||||
using SharpCompress.Compressors.LZMA;
|
using SharpCompress.Compressors.LZMA;
|
||||||
#if NET8_0_OR_GREATER
|
#if NET10_0_OR_GREATER
|
||||||
using Aaru6.Checksums;
|
using Aaru6.Checksums;
|
||||||
#else
|
#else
|
||||||
using Aaru.Checksums;
|
using Aaru.Checksums;
|
||||||
|
|||||||
@@ -17,14 +17,14 @@ namespace AaruBenchmark
|
|||||||
var config = ManualConfig.Create(DefaultConfig.Instance);
|
var config = ManualConfig.Create(DefaultConfig.Instance);
|
||||||
config.CultureInfo = CultureInfo.InvariantCulture;
|
config.CultureInfo = CultureInfo.InvariantCulture;
|
||||||
|
|
||||||
BenchmarkRunner.Run<ADCBenchs>(config);
|
/* BenchmarkRunner.Run<ADCBenchs>(config);
|
||||||
BenchmarkRunner.Run<AppleRleBenchs>(config);
|
BenchmarkRunner.Run<AppleRleBenchs>(config);
|
||||||
BenchmarkRunner.Run<TeleDiskLzhBenchs>(config);
|
BenchmarkRunner.Run<TeleDiskLzhBenchs>(config);
|
||||||
BenchmarkRunner.Run<GzipBenchs>(config);
|
BenchmarkRunner.Run<GzipBenchs>(config);
|
||||||
BenchmarkRunner.Run<Bzip2Benchs>(config);
|
BenchmarkRunner.Run<Bzip2Benchs>(config);
|
||||||
BenchmarkRunner.Run<LzipBenchs>(config);
|
BenchmarkRunner.Run<LzipBenchs>(config);*/
|
||||||
BenchmarkRunner.Run<LzmaBenchs>(config);
|
BenchmarkRunner.Run<LzmaBenchs>(config);
|
||||||
BenchmarkRunner.Run<FlacBenchs>(config);
|
/*BenchmarkRunner.Run<FlacBenchs>(config);
|
||||||
BenchmarkRunner.Run<CompressGzipBenchs>(config);
|
BenchmarkRunner.Run<CompressGzipBenchs>(config);
|
||||||
BenchmarkRunner.Run<CompressBzip2Benchs>(config);
|
BenchmarkRunner.Run<CompressBzip2Benchs>(config);
|
||||||
BenchmarkRunner.Run<CompressLzipBenchs>(config);
|
BenchmarkRunner.Run<CompressLzipBenchs>(config);
|
||||||
@@ -43,7 +43,7 @@ namespace AaruBenchmark
|
|||||||
BenchmarkRunner.Run<Sha384Benchs>(config);
|
BenchmarkRunner.Run<Sha384Benchs>(config);
|
||||||
BenchmarkRunner.Run<Sha512Benchs>(config);
|
BenchmarkRunner.Run<Sha512Benchs>(config);
|
||||||
BenchmarkRunner.Run<SpamSumBenchs>(config);
|
BenchmarkRunner.Run<SpamSumBenchs>(config);
|
||||||
BenchmarkRunner.Run<LambdaBenchs>(config);
|
BenchmarkRunner.Run<LambdaBenchs>(config);*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user