Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,6 @@ public static void Cosh_InPlace(int tensorLength)

[Theory]
[MemberData(nameof(TensorLengths))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/92885", TestRuntimes.Mono)]
public static void Cosh_SpecialValues(int tensorLength)
{
using BoundedMemory<float> x = CreateAndFillTensor(tensorLength);
Expand Down Expand Up @@ -920,7 +919,6 @@ public static void Exp_InPlace(int tensorLength)

[Theory]
[MemberData(nameof(TensorLengths))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/92885", TestRuntimes.Mono)]
public static void Exp_SpecialValues(int tensorLength)
{
using BoundedMemory<float> x = CreateAndFillTensor(tensorLength);
Expand Down Expand Up @@ -2460,7 +2458,6 @@ public static void Sigmoid_InPlace(int tensorLength)

[Theory]
[MemberData(nameof(TensorLengths))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/92885", TestRuntimes.Mono)]
public static void Sigmoid_SpecialValues(int tensorLength)
{
using BoundedMemory<float> x = CreateAndFillTensor(tensorLength);
Expand Down Expand Up @@ -2565,7 +2562,6 @@ public static void Sinh_InPlace(int tensorLength)

[Theory]
[MemberData(nameof(TensorLengths))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/92885", TestRuntimes.Mono)]
public static void Sinh_SpecialValues(int tensorLength)
{
using BoundedMemory<float> x = CreateAndFillTensor(tensorLength);
Expand Down Expand Up @@ -2942,7 +2938,6 @@ public static void Tanh_InPlace(int tensorLength)

[Theory]
[MemberData(nameof(TensorLengths))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/92885", TestRuntimes.Mono)]
public static void Tanh_SpecialValues(int tensorLength)
{
using BoundedMemory<float> x = CreateAndFillTensor(tensorLength);
Expand Down