You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example above, if we place update as specified by the indices, it overflows. jax-metal ignores the overflow and returns [[1, 2, 3], [1, 7, 8]] (updating the second row). Using the CPU platform, jax clips the start indices in such cases (when start_index + slice_dimension > dimension), so it would return [[1, 7, 8], [1, 9, 10]].
System info (python version, jaxlib version, accelerator, etc.)
Description
In the example above, if we place
update
as specified by the indices, it overflows. jax-metal ignores the overflow and returns[[1, 2, 3], [1, 7, 8]]
(updating the second row). Using the CPU platform, jax clips the start indices in such cases (whenstart_index + slice_dimension > dimension
), so it would return[[1, 7, 8], [1, 9, 10]]
.System info (python version, jaxlib version, accelerator, etc.)
jax-metal 0.0.7
The text was updated successfully, but these errors were encountered: