added T[] vs Span<T> benchmark

This commit is contained in:
ikpil 2024-04-27 10:51:52 +09:00
parent fb49a5bca6
commit adbb265ca2
2 changed files with 71 additions and 10 deletions

View File

@ -11,11 +11,13 @@ namespace DotRecast.Core
{ {
Array.Copy(sourceArray, sourceIndex, destinationArray, destinationIndex, length); Array.Copy(sourceArray, sourceIndex, destinationArray, destinationIndex, length);
} }
[MethodImpl(MethodImplOptions.AggressiveInlining)] [MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Copy<T>(Span<T> sourceArray, int sourceIndex, Span<T> destinationArray, int destinationIndex, int length) public static void Copy<T>(Span<T> sourceArray, int sourceIndex, Span<T> destinationArray, int destinationIndex, int length)
{ {
sourceArray.Slice(sourceIndex, length).CopyTo(destinationArray.Slice(destinationIndex)); var src = sourceArray.Slice(sourceIndex, length);
var dst = destinationArray.Slice(destinationIndex);
src.CopyTo(dst);
} }

View File

@ -1,6 +1,7 @@
using System; using System;
using System.Buffers; using System.Buffers;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Sockets;
using DotRecast.Core.Buffers; using DotRecast.Core.Buffers;
using DotRecast.Core.Collections; using DotRecast.Core.Collections;
using NUnit.Framework; using NUnit.Framework;
@ -84,18 +85,76 @@ public class RcArrayBenchmarkTests
[Test] [Test]
public void TestBenchmarkArrays() public void TestBenchmarkArrays()
{ {
var list = new List<(string title, long ticks)>(); var results = new List<(string title, long ticks)>();
list.Add(Bench("new int[len]", RoundForArray)); results.Add(Bench("new int[len]", RoundForArray));
list.Add(Bench("ArrayPool<int>.Shared.Rent(len)", RoundForPureRentArray)); results.Add(Bench("ArrayPool<int>.Shared.Rent(len)", RoundForPureRentArray));
list.Add(Bench("RcRentedArray.Rent<int>(len)", RoundForRcRentedArray)); results.Add(Bench("RcRentedArray.Rent<int>(len)", RoundForRcRentedArray));
list.Add(Bench("new RcStackArray512<int>()", RoundForRcStackArray)); results.Add(Bench("new RcStackArray512<int>()", RoundForRcStackArray));
list.Add(Bench("stackalloc int[len]", RoundForStackalloc)); results.Add(Bench("stackalloc int[len]", RoundForStackalloc));
list.Sort((x, y) => x.ticks.CompareTo(y.ticks)); results.Sort((x, y) => x.ticks.CompareTo(y.ticks));
foreach (var t in list) foreach (var t in results)
{ {
Console.WriteLine($"{t.title} {t.ticks / (double)TimeSpan.TicksPerMillisecond} ms"); Console.WriteLine($"{t.title} {t.ticks / (double)TimeSpan.TicksPerMillisecond} ms");
} }
} }
[Test]
public void TestSpanVsArray()
{
var r = new RcRand();
var list = new List<(long[] src, long[] dest)>();
for (int i = 0; i < 14; ++i)
{
var s = new long[(int)Math.Pow(2, i + 1)];
var d = new long[(int)Math.Pow(2, i + 1)];
for (int ii = 0; ii < s.Length; ++ii)
{
s[ii] = r.NextInt32();
}
list.Add((s, d));
}
var results = new List<(string title, long ticks)>();
for (int i = 0; i < list.Count; ++i)
{
var seq = i;
Array.Fill(list[seq].dest, 0);
var resultLong = Bench($"long[{list[seq].src.Length}]", _ =>
{
var v = list[seq];
RcArrays.Copy(v.src, 0, v.dest, 0, v.src.Length);
});
Array.Fill(list[seq].dest, 0);
var resultSpan = Bench($"Span<long[], {list[seq].src.Length}>", _ =>
{
var v = list[seq];
Span<long> src = v.src;
Span<long> dest = v.dest;
RcArrays.Copy(src, 0, dest, 0, src.Length);
});
results.Add(resultLong);
results.Add(resultSpan);
}
int newLine = 0;
foreach (var t in results)
{
Console.WriteLine($"{t.title}: {t.ticks / (double)TimeSpan.TicksPerMillisecond} ms");
newLine += 1;
if (0 == (newLine % 2))
{
Console.WriteLine("");
}
}
}
} }