From a3f3bfcd5f479641f83de47baa56b5561741ffb3 Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Sat, 18 Mar 2023 17:52:23 +0100 Subject: [PATCH] Revert IntrinsicsConfig to HwIntrinsics.AllowAll | HwIntrinsics.DisableAVX2 --- tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs b/tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs index 9fb3f434a..44675aaea 100644 --- a/tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs +++ b/tests/ImageSharp.Tests/Formats/Jpg/JpegColorConverterTests.cs @@ -20,7 +20,7 @@ public class JpegColorConverterTests private const int TestBufferLength = 40; - private const HwIntrinsics IntrinsicsConfig = HwIntrinsics.AllowAll | HwIntrinsics.DisableHWIntrinsic; + private const HwIntrinsics IntrinsicsConfig = HwIntrinsics.AllowAll | HwIntrinsics.DisableAVX2; private static readonly ApproximateColorSpaceComparer ColorSpaceComparer = new(epsilon: Precision);