Skip to content

Commit

Permalink
Add microbenchmark for core UnmanagedMemoryStream scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas committed Oct 21, 2023
1 parent ce59089 commit 2693073
Showing 1 changed file with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.IO;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;

namespace System.IO.Tests
{
[BenchmarkCategory(Categories.Libraries)]
public unsafe class UnmanagedMemoryStreamTests
{
private const int Length = 10000;
private byte* buffer;

[GlobalSetup]
public void Setup()
{
buffer = (byte*)Marshal.AllocCoTaskMem(Length);
}

[GlobalCleanup]
public void Cleanup()
{
Marshal.FreeCoTaskMem((IntPtr)buffer);
}

[Benchmark]
public void ReadAsBytes()
{
using (var ums = new UnmanagedMemoryStream(buffer, Length))
{
while (ums.ReadByte() >= 0)
{
}
}
}

[Benchmark]
public void ReadAsArrays()
{
var array = new byte[1];
using (var ums = new UnmanagedMemoryStream(buffer, Length))
{
while (ums.Read(array, 0, array.Length) != 0)
{
}
}
}
}
}

0 comments on commit 2693073

Please sign in to comment.