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 authored and jtschuster committed Sep 17, 2024
1 parent 1a2e96b commit edcf76c
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 edcf76c

Please sign in to comment.