BUG: torch/meshgrid: stop ignoring the "indexing" argument by ev-br · Pull Request #341 · data-apis/array-api-compat · GitHub
Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion array_api_compat/torch/_aliases.py
5 changes: 5 additions & 0 deletions tests/test_dask.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
from contextlib import contextmanager

import numpy as np
Expand Down Expand Up @@ -167,6 +168,10 @@ def test_sort_argsort_chunk_size(xp, func, shape, chunks):
)


@pytest.mark.skipif(
sys.version_info.major*100 + sys.version_info.minor < 312,
reason="dask interop requires numpy >= 3.12"
)
@pytest.mark.parametrize("func", ["sort", "argsort"])
def test_sort_argsort_meta(xp, func):
"""Test meta-namespace other than numpy"""
Expand Down
13 changes: 13 additions & 0 deletions tests/test_torch.py
Loading