Skip to content

Commit

Permalink
Disable TensorExtensionsTwoSpanInFloatOut due to dotnet#107254 (dotne…
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Sep 9, 2024
1 parent b7b91cb commit d2c7db0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -486,12 +486,13 @@ public void TensorExtensionsTwoSpanInSpanOut<T>(TensorPrimitivesTwoSpanInSpanOut
public static IEnumerable<object[]> TwoSpanInFloatOutData()
{
yield return Create<float>(TensorPrimitives.Distance, Tensor.Distance);
//yield return Create<float>(TensorPrimitives.Dot, Tensor.Dot);
yield return Create<float>(TensorPrimitives.Dot, Tensor.Dot);

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

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

0 comments on commit d2c7db0

Please sign in to comment.