Skip to content

Commit

Permalink
Merge pull request #26542 from jakevdp:fix-breakage
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 726944183
  • Loading branch information
Google-ML-Automation committed Feb 14, 2025
2 parents 6addf02 + b93934c commit ca87f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jax/_src/numpy/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ def _expand_bool_indices(idx, shape):
abstract_i = None
if _is_boolean_index(i):
if isinstance(i, list):
i = array(i)
i = lax_numpy.array(i)
abstract_i = core.get_aval(i)

if not core.is_concrete(i):
Expand Down

0 comments on commit ca87f5f

Please sign in to comment.