From 2fde0be8427ac87d51e84b54783b9be4bf7d8fa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 01:53:43 +0000 Subject: [PATCH 1/2] Skip SpanDestinationFunctions_ValueRange on iOS (refs #129045) The TensorPrimitives SpanDestinationFunctions_ValueRange tests fail on iossimulator-arm64 due to reduced precision in the vectorized Tan implementation compared to the scalar reference. Disable via ActiveIssue until the precision issue is resolved. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs b/src/libraries/System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs index 2cf563faa56bb4..54f337298093cb 100644 --- a/src/libraries/System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs +++ b/src/libraries/System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs @@ -569,6 +569,7 @@ public void SpanDestinationFunctions_SpecialValues(SpanDestinationDelegate tenso }); } + [ActiveIssue("https://github.com/dotnet/runtime/issues/129045", typeof(PlatformDetection), nameof(PlatformDetection.IsiOS))] [Theory] [MemberData(nameof(SpanDestinationFunctionsToTest))] public void SpanDestinationFunctions_ValueRange(SpanDestinationDelegate tensorPrimitivesMethod, Func expectedMethod, T? tolerance = null) From e303020a538e1e770cbcf0bf6c688cd726c7414a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 7 Jun 2026 01:53:48 +0000 Subject: [PATCH 2/2] ci: trigger checks