From 37e4da0ef14db08172d9504a0663c01615ad01b3 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Thu, 1 Sep 2022 21:53:37 -0400 Subject: [PATCH] Re-enable a benchmark was disabled earlier due to an issue Issue: https://github.com/dotnet/performance/issues/2575 --- .../micro/libraries/System.Runtime.Numerics/Perf.BigInteger.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/benchmarks/micro/libraries/System.Runtime.Numerics/Perf.BigInteger.cs b/src/benchmarks/micro/libraries/System.Runtime.Numerics/Perf.BigInteger.cs index e7e43f5822d..f39b29320f0 100644 --- a/src/benchmarks/micro/libraries/System.Runtime.Numerics/Perf.BigInteger.cs +++ b/src/benchmarks/micro/libraries/System.Runtime.Numerics/Perf.BigInteger.cs @@ -91,8 +91,7 @@ public BigInteger Remainder(BigIntegers arguments) public IEnumerable ModPowValues() { yield return new BigIntegers(new[] { 16, 16, 16 }); - // currently commented out due to a bug in the product https://github.com/dotnet/performance/issues/2575 - // yield return new BigIntegers(new[] { 1024, 1024, 64 }); + yield return new BigIntegers(new[] { 1024, 1024, 64 }); yield return new BigIntegers(new[] { 16384, 16384, 64 }); }