Skip to content
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

BUG: torch.asarray device propagation #299

Merged
merged 1 commit into from
Apr 4, 2025

Conversation

crusaderky
Copy link
Contributor

@crusaderky crusaderky commented Apr 3, 2025

@Copilot Copilot bot review requested due to automatic review settings April 3, 2025 10:44
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR implements a workaround for a known PyTorch issue with torch.asarray device propagation and improves device handling across several functions. The changes include:

  • Updating imports and all ordering in torch/_typing.py to source the Device type directly from torch.
  • Revising type annotations and docstrings across torch, numpy, dask, and cupy _info.py files to reflect Device rather than a string.
  • Introducing an asarray helper in torch/_aliases.py and removing redundant explicit conversion calls in prod, sum, any, and all.

Reviewed Changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.

Show a summary per file
File Description
array_api_compat/torch/_typing.py Adjusted import order and all for device type propagation.
array_api_compat/torch/_info.py Updated docstrings for default_device and default_dtypes to use Device.
array_api_compat/torch/_aliases.py Added asarray helper and removed explicit torch.asarray conversions in several functions.
array_api_compat/numpy/_info.py Updated device type annotation in function docstrings.
array_api_compat/dask/array/_info.py Updated device type annotation in function docstrings.
array_api_compat/cupy/_info.py Updated device type annotation and added Notes for default_device.
array_api_compat/common/_aliases.py Updated a comment on creation functions to reflect support for Dask.
Comments suppressed due to low confidence (4)

array_api_compat/torch/_aliases.py:283

  • In function 'prod', the explicit conversion to a tensor was removed. Ensure that 'x' is already a torch.Tensor or add conversion logic to prevent potential runtime errors.
-    x = torch.asarray(x)

array_api_compat/torch/_aliases.py:319

  • In function 'sum', the removal of the torch.asarray conversion may lead to errors if 'x' is not already a tensor. Consider validating or converting 'x' as needed.
-    x = torch.asarray(x)

array_api_compat/torch/_aliases.py:349

  • In function 'any', the removal of the torch.asarray conversion assumes that 'x' is already a tensor. Verify that this holds for all call sites to prevent possible runtime issues.
-    x = torch.asarray(x)

array_api_compat/torch/_aliases.py:374

  • In function 'all', ensure that removing the explicit torch.asarray conversion will not cause issues when 'x' is not a tensor. It may be necessary to handle non-tensor inputs safely.
-    x = torch.asarray(x)

Copy link
Member

@lucascolley lucascolley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@lucascolley lucascolley changed the title ENH: torch.asarray device propagation BUG: torch.asarray device propagation Apr 4, 2025
@lucascolley lucascolley added the bug Something isn't working label Apr 4, 2025
@lucascolley lucascolley added this to the 1.12 milestone Apr 4, 2025
@lucascolley lucascolley merged commit 621494b into data-apis:main Apr 4, 2025
40 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants