Skip to content

Commit d101a6d

Browse files
committed
fix merge conflicts
1 parent 5da7e36 commit d101a6d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

array_api_compat/cupy/_aliases.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ def take_along_axis(x: Array, indices: Array, /, *, axis: int = -1) -> Array:
147147
'bool', 'concat', 'count_nonzero', 'pow', 'sign',
148148
'take_along_axis']
149149

150-
def __dir__() -> list[str]:
151-
return __all__
152150

153151
def __dir__() -> list[str]:
154152
return __all__

array_api_compat/dask/array/linalg.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44

55
import dask.array as da
66

7+
# The `matmul` and `tensordot` functions are in both the main and linalg namespaces
8+
from dask.array import matmul, outer, tensordot
9+
710
# Exports
811
from ..._internal import clone_module, get_xp
912
from ...common import _linalg
10-
from ...common._typing import Array as _Array
13+
from ...common._typing import Array
1114

1215
__all__ = clone_module("dask.array.linalg", globals())
1316

array_api_compat/torch/linalg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import torch
44
import torch.linalg
5-
from typing import Optional, Union, Tuple
65

76
from .._internal import clone_module
87

0 commit comments

Comments
 (0)