Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Remove more active issues for #92885 #93596

Merged
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