Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix merge conflicts
  • Loading branch information
crusaderky committed Jun 4, 2025
commit d101a6dc5f1ba4b17f1ee402f100e3b4f0cccd81
2 changes: 0 additions & 2 deletions array_api_compat/cupy/_aliases.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ def take_along_axis(x: Array, indices: Array, /, *, axis: int = -1) -> Array:
'bool', 'concat', 'count_nonzero', 'pow', 'sign',
'take_along_axis']

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

def __dir__() -> list[str]:
return __all__
5 changes: 4 additions & 1 deletion array_api_compat/dask/array/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@

import dask.array as da

# The `matmul` and `tensordot` functions are in both the main and linalg namespaces
from dask.array import matmul, outer, tensordot

# Exports
from ..._internal import clone_module, get_xp
from ...common import _linalg
from ...common._typing import Array as _Array
from ...common._typing import Array

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

Expand Down
1 change: 0 additions & 1 deletion array_api_compat/torch/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import torch
import torch.linalg
from typing import Optional, Union, Tuple

from .._internal import clone_module

Expand Down
Loading