From ebd8114d0436bf01f12831456735c8202fe76377 Mon Sep 17 00:00:00 2001 From: Stefan Nikolei Date: Mon, 13 Mar 2023 19:09:11 +0100 Subject: [PATCH] Disable HwIntrinsics for Tests as suggested in https://github.com/SixLabors/ImageSharp/pull/2397#issuecomment-1466633890 --- 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 a939f1b687..6c38e23bd6 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.DisableAVX; + private const HwIntrinsics IntrinsicsConfig = HwIntrinsics.AllowAll | HwIntrinsics.DisableHWIntrinsic; private static readonly ApproximateColorSpaceComparer ColorSpaceComparer = new(epsilon: Precision);