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 mikelle-rogers committed Dec 4, 2024
1 parent 09b930c commit 7d8e56a
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 7d8e56a

Please sign in to comment.