Skip to content

revert temporary changes made in gh-2160 #2173

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

Merged
merged 1 commit into from
Nov 14, 2024
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
3 changes: 1 addition & 2 deletions tests/test_arraypad.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from dpnp.dpnp_utils.dpnp_utils_pad import _as_pairs as dpnp_as_pairs
from tests.third_party.cupy import testing

from .helper import assert_dtype_allclose, get_all_dtypes, has_support_aspect64
from .helper import assert_dtype_allclose, get_all_dtypes


class TestPad:
Expand Down Expand Up @@ -384,7 +384,6 @@ def test_reflect_symmetric_1d(self, pad_width, mode, reflect_type):
result = dpnp.pad(a_dp, pad_width, mode=mode, reflect_type=reflect_type)
assert_array_equal(result, expected)

@pytest.mark.skipif(not has_support_aspect64(), reason="dpctl-gh-1887")
@pytest.mark.parametrize("data", [[[4, 5, 6], [6, 7, 8]], [[4, 5, 6]]])
@pytest.mark.parametrize("pad_width", [10, (5, 7)])
@pytest.mark.parametrize("mode", ["reflect", "symmetric"])
Expand Down
Loading