You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
Processing dotnet/runtime#111564 (comment) command:
Command
-intel --envvars DOTNET_EnableAVX=0
(EgorBot will reply in this issue)
The text was updated successfully, but these errors were encountered: