Skip to content

Commit

Permalink
add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed Jun 30, 2024
1 parent cfe6add commit 5bc8802
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions ivy_tests/test_integrations/test_kornia.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,13 @@


# TODO: remove
def test_sharpness(target_framework, mode, backend_compile):
trace_args = (
torch.rand(1, 1, 5, 5),
0.5,
)
def test_equalize(target_framework, mode, backend_compile):
trace_args = (torch.rand(1, 2, 3, 3),)
trace_kwargs = {}
test_args = (
torch.rand(5, 1, 5, 5),
1.0,
)
test_args = (torch.rand(5, 2, 3, 3),)
test_kwargs = {}
_test_function(
kornia.enhance.sharpness,
kornia.enhance.equalize,
trace_args,
trace_kwargs,
test_args,
Expand Down

0 comments on commit 5bc8802

Please sign in to comment.