HPPH/HPPH.Benchmark/MinMaxBenchmarks.cs

72 lines
1.7 KiB
C#

using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs;
using HPPH.Reference;
namespace HPPH.Benchmark;
[SimpleJob(RuntimeMoniker.Net80)]
[HtmlExporter]
[MemoryDiagnoser]
public class MinMaxBenchmarks
{
#region Properties & Fields
private readonly List<ColorRGB[]> _colors3bpp;
private readonly List<ColorRGBA[]> _colors4bpp;
#endregion
#region Constructors
public MinMaxBenchmarks()
{
_colors3bpp = BenchmarkHelper.GetSampleData<ColorRGB>();
_colors4bpp = BenchmarkHelper.GetSampleData<ColorRGBA>();
}
#endregion
#region Methods
[Benchmark]
public IMinMax[] PixelHelper_3BPP()
{
IMinMax[] minMax = new IMinMax[_colors3bpp.Count];
for (int i = 0; i < _colors3bpp.Count; i++)
minMax[i] = new ReadOnlySpan<ColorRGB>(_colors3bpp[i]).MinMax();
return minMax;
}
[Benchmark]
public IMinMax[] PixelHelper_4BPP()
{
IMinMax[] minMax = new IMinMax[_colors4bpp.Count];
for (int i = 0; i < _colors4bpp.Count; i++)
minMax[i] = new ReadOnlySpan<ColorRGBA>(_colors4bpp[i]).MinMax();
return minMax;
}
[Benchmark]
public IMinMax[] Reference_3BPP()
{
IMinMax[] minMax = new IMinMax[_colors3bpp.Count];
for (int i = 0; i < _colors3bpp.Count; i++)
minMax[i] = ReferencePixelHelper.MinMax(new ReadOnlySpan<ColorRGB>(_colors3bpp[i]));
return minMax;
}
[Benchmark]
public IMinMax[] Reference_4BPP()
{
IMinMax[] minMax = new IMinMax[_colors4bpp.Count];
for (int i = 0; i < _colors4bpp.Count; i++)
minMax[i] = ReferencePixelHelper.MinMax(new ReadOnlySpan<ColorRGBA>(_colors4bpp[i]));
return minMax;
}
#endregion
}