File tree 1 file changed +2
-1
lines changed
src/libraries/System.Numerics.Tensors/tests 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -486,12 +486,13 @@ public void TensorExtensionsTwoSpanInSpanOut<T>(TensorPrimitivesTwoSpanInSpanOut
486
486
public static IEnumerable < object [ ] > TwoSpanInFloatOutData ( )
487
487
{
488
488
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 ) ;
490
490
491
491
static object [ ] Create < T > ( TensorPrimitivesTwoSpanInTOut < T > tensorPrimitivesMethod , TensorTwoSpanInTOut < T > tensorOperation )
492
492
=> new object [ ] { tensorPrimitivesMethod , tensorOperation } ;
493
493
}
494
494
495
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/107254" ) ]
495
496
[ Theory , MemberData ( nameof ( TwoSpanInFloatOutData ) ) ]
496
497
public void TensorExtensionsTwoSpanInFloatOut < T > ( TensorPrimitivesTwoSpanInTOut < T > tensorPrimitivesOperation , TensorTwoSpanInTOut < T > tensorOperation )
497
498
where T : INumberBase < T >
You can’t perform that action at this time.
0 commit comments