Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Lazy arrays for asymptotically better performance #326

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

Closed
hameerabbasi opened this issue Feb 17, 2020 · 9 comments
Closed

Lazy arrays for asymptotically better performance #326

hameerabbasi opened this issue Feb 17, 2020 · 9 comments

Comments

@hameerabbasi
Copy link
Collaborator

hameerabbasi commented Feb 17, 2020

I've already brought this up in another thread (dask/dask#5879), but I was planning to make sparse collections within this library lazy for asymptotically better performance in certain situations. See the following research papers for details:

And the following talks:

These research papers define a method to generate efficient kernels for a broad range of storage formats. They can do things composed of element-wise operations (with broadcasting) and reductions, but they can't do things like (for example) eigendecompositions (which we intend to do with SciPy wrappers for LAPACK, et. al.).

With this in mind, would it make sense to make sparse collections lazy, with the caveat of an API break? These would have an API similar to Dask, having to do arr.compute() for the final result. As discussed in dask/dask#5879, it would also follow the protocols for dask custom collections.

If we manage to do this right, adding GPU support shouldn't be difficult either. But the question arises, is it worth the break an API compatibility to do this?

@hameerabbasi
Copy link
Collaborator Author

Here's my proposal: We declare 0.x a backwards-compatible API, and consider 1.x to be based on TACO. We will emit a FutureWarning in 0.* about the API change.

@mrocklin
Copy link
Contributor

mrocklin commented Feb 17, 2020 via email

@hameerabbasi
Copy link
Collaborator Author

Perhaps it would make sense to have a
different sparse_lazy library that depended strongly on this one?

I think if we were to do this, it’d be the other way around: immediate operations would just do .compute() at the end. How about I leave the main namespace API as-is move the lazy part to sparse.perf.

@mrocklin
Copy link
Contributor

That sounds nicer to me from an integration perspective. Also, to be clear, I'm very excited about seeing what this can do in terms of performance. My original hesitation is mostly around thinking about other libraries depending on pydata/sparse. My guess is that folks will be more hesitant to depend on anything that has any sort of non-traditional behavior.

@rgommers
Copy link

I think there's also a good amount of evidence that eager is better as a default, see e.g. PyTorch modes and Tensorflow moving to eager by default.

So +1 for eager by default, and advertising lazy mode prominently as a potential speedup method.

@hameerabbasi
Copy link
Collaborator Author

So I think the final decision is:

  1. Build the eager method on top of the lazy.
  2. Expose the lazy method as well for potential speedups, as a separate submodule.

@dhirschfeld
Copy link

Potentially OT, but I'm curious how this relates to uarray - isn't that lazily evaluated? And if so, couldn't you just create a sparse backend?

@hameerabbasi
Copy link
Collaborator Author

@dhirschfeld An early version of uarray that was renamed to metadsl was lazy. The current iteration is not lazy.

@saulshanabrook
Copy link

Build the eager method on top of the lazy.

That makes sense!

@pydata pydata locked and limited conversation to collaborators May 20, 2021

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Projects
None yet
Development

No branches or pull requests

5 participants