Skip to content

Commit 4453d4c

Browse files
committed
Disable TensorExtensionsTwoSpanInFloatOut due to dotnet#107254
1 parent 46c9a4f commit 4453d4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libraries/System.Numerics.Tensors/tests/TensorSpanTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,12 +486,13 @@ public void TensorExtensionsTwoSpanInSpanOut<T>(TensorPrimitivesTwoSpanInSpanOut
486486
public static IEnumerable<object[]> TwoSpanInFloatOutData()
487487
{
488488
yield return Create<float>(TensorPrimitives.Distance, Tensor.Distance);
489-
//yield return Create<float>(TensorPrimitives.Dot, Tensor.Dot);
489+
yield return Create<float>(TensorPrimitives.Dot, Tensor.Dot);
490490

491491
static object[] Create<T>(TensorPrimitivesTwoSpanInTOut<T> tensorPrimitivesMethod, TensorTwoSpanInTOut<T> tensorOperation)
492492
=> new object[] { tensorPrimitivesMethod, tensorOperation };
493493
}
494494

495+
[ActiveIssue("https://github.com/dotnet/runtime/issues/107254")]
495496
[Theory, MemberData(nameof(TwoSpanInFloatOutData))]
496497
public void TensorExtensionsTwoSpanInFloatOut<T>(TensorPrimitivesTwoSpanInTOut<T> tensorPrimitivesOperation, TensorTwoSpanInTOut<T> tensorOperation)
497498
where T : INumberBase<T>

0 commit comments

Comments
 (0)