- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1
Open
Description
Processing dotnet/runtime#111564 (comment) command:
Command
-intel --envvars DOTNET_EnableAVX:0
using System.Collections;
using BenchmarkDotNet.Attributes;
public class Benchmarks
{
    bool[] buffer = new bool[1000];
    [Benchmark]
    [ArgumentsSource(nameof(TestData))]
    public void BitArrayCopyTo(BitArray bitArray) => bitArray.CopyTo(buffer, 0);
    public IEnumerable<BitArray> TestData()
    {
        yield return new BitArray(31);
        yield return new BitArray(32);
        yield return new BitArray(33);
        yield return new BitArray(64);
        yield return new BitArray(127);
        yield return new BitArray(128);
        yield return new BitArray(129);
        yield return new BitArray(256);
    }
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels