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

ENH: apply_where (migrate lazywhere from scipy) #141

Merged
merged 5 commits into from
Mar 18, 2025

Conversation

crusaderky
Copy link
Contributor

@crusaderky crusaderky commented Feb 10, 2025

Closes #14.
scipy._lib._utils.lazywhere, with revised UI and added support for jax.jit and Dask.

@crusaderky crusaderky marked this pull request as draft February 10, 2025 15:08
Comment on lines +182 to +158
if is_jax_namespace(xp):
# jax.jit does not support assignment by boolean mask
return xp.where(cond, f1(*args), f2(*args) if f2 is not None else fill_value)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

JAX-on-dask is currently unsupported by Dask. This is here and not much higher above only for this reason.
We'll need to add explicit unit tests when it lands in the future.

ncond = ~cond
temp2 = f2(*(arr[ncond] for arr in args))
out = xp.empty(cond.shape, dtype=dtype, device=device)
out = at(out, ncond).set(temp2)
Copy link
Contributor Author

@crusaderky crusaderky Feb 10, 2025

Choose a reason for hiding this comment

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

JAX doesn't benefit from this at, but Sparse will (eventually)

Copy link
Member

@rgommers rgommers left a comment

Choose a reason for hiding this comment

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

Thanks @crusaderky. Overall looks good, a few comments. Didn't test locally yet, will do once this is no longer Draft.

@crusaderky crusaderky force-pushed the lazywhere branch 5 times, most recently from 2d199dd to 0b7fce1 Compare February 18, 2025 18:22
@crusaderky crusaderky changed the title WIP ENH: apply_where (migrate lazywhere from scipy) ENH: apply_where (migrate lazywhere from scipy) Feb 18, 2025
@crusaderky crusaderky changed the title ENH: apply_where (migrate lazywhere from scipy) WIP: ENH: apply_where (migrate lazywhere from scipy) Feb 18, 2025
@crusaderky crusaderky changed the title WIP: ENH: apply_where (migrate lazywhere from scipy) ENH: apply_where (migrate lazywhere from scipy) Feb 19, 2025
@crusaderky crusaderky marked this pull request as ready for review February 19, 2025 17:24
@crusaderky
Copy link
Contributor Author

Moving stuff out of here for the sake of a shorter diff and to #145 and #146.

@crusaderky crusaderky force-pushed the lazywhere branch 4 times, most recently from c9be347 to e307525 Compare February 21, 2025 14:40
@crusaderky crusaderky force-pushed the lazywhere branch 2 times, most recently from 71aebee to ecc4931 Compare March 5, 2025 17:56
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.

partial review (all apart from apply_where itself and its tests)

@crusaderky crusaderky force-pushed the lazywhere branch 2 times, most recently from c3c6337 to b3808e7 Compare March 17, 2025 15:50
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.

reviewed all apart from TestApplyWhere

@lucascolley lucascolley requested a review from mdhaber March 17, 2025 22:16
@lucascolley lucascolley added this to the 0.7.0 milestone Mar 18, 2025
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.

thanks @crusaderky, LGTM once open comments are resolved!

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.

would you like to move the discussion at #141 (comment) to an issue somewhere?

@crusaderky
Copy link
Contributor Author

@lucascolley all comments have been addressed

@lucascolley lucascolley merged commit f74d71a into data-apis:main Mar 18, 2025
10 checks passed
@crusaderky crusaderky deleted the lazywhere branch March 18, 2025 23:15
NeilGirdhar pushed a commit to NeilGirdhar/array-api-extra that referenced this pull request Apr 2, 2025
* ENH: apply_where (migrate _lazywhere from scipy)

* Code review

* merge main

* tweak sparse skip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request new function
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ENH: add lazywhere
4 participants