Skip to content

Commit

Permalink
values -> targets
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Oct 13, 2023
1 parent a9caabe commit 804f6ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/test_1d/test_backward_1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def func(points, targets):
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_CPU_values(
def test_t2_backward_CPU_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cpu", False)
Expand All @@ -145,7 +145,7 @@ def test_t2_backward_CPU_points(
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_cuda_values(
def test_t2_backward_cuda_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cuda", False)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_2d/test_backward_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def func(points, targets):
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_CPU_values(
def test_t2_backward_CPU_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cpu", False)
Expand All @@ -156,7 +156,7 @@ def test_t2_backward_CPU_points(
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_cuda_values(
def test_t2_backward_cuda_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cuda", False)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_3d/test_backward_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def func(points, targets):
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_CPU_values(
def test_t2_backward_CPU_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cpu", False)
Expand All @@ -153,7 +153,7 @@ def test_t2_backward_CPU_points(
@pytest.mark.parametrize("modifier", length_modifiers)
@pytest.mark.parametrize("fftshift", [False, True])
@pytest.mark.parametrize("isign", [-1, 1])
def test_t2_backward_cuda_values(
def test_t2_backward_cuda_targets(
N: int, modifier: int, fftshift: bool, isign: int
) -> None:
check_t2_backward(N, modifier, fftshift, isign, "cuda", False)
Expand Down

0 comments on commit 804f6ee

Please sign in to comment.