-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Processing dotnet/runtime#113715 (comment) command:
Command
-intel -arm
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
public unsafe class Bench
{
private object[] _source;
private object[] _dest;
public Bench()
{
_source = new object[10];
_dest = new object[_source.Length];
}
[Benchmark]
public void BenchmarkBulkMoveWithWriteBarrier()
{
_source.AsSpan().CopyTo(_dest.AsSpan());
}
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels