-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Processing dotnet/runtime#122530 (comment) command:
Command
-windows_x64 -intel -arm
using System;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
public class Program
{
// Intentionally small to measure the overhead before starting the actual work.
private readonly int[] src = new int[1];
private readonly int[] dst = new int[1];
[Benchmark]
public void ArrayCopy() { Array.Copy(src, 0, dst, 0, 1); }
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels