Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Fixes:
- Fix issues with tag false reassignment (mihran113)
- Fix issue of detecting defice arrays with newer versions of jax (alberttorosyan)

## 3.29.1 May 8, 2025:

Expand Down
3 changes: 3 additions & 0 deletions aim/sdk/num_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ def is_jax_device_array(inst):
return True
if inst_has_typename(inst, ['jaxlib', 'xla_extension', 'DeviceArray']):
return True
if inst_has_typename(inst, ['jaxlib', '_jax', 'ArrayImpl']):
return True

return False


Expand Down
Loading