-
Notifications
You must be signed in to change notification settings - Fork 19
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
Optimise uses of ndarray #170
Comments
WIP at #178. |
I think #198 brings us to a good state. The |
Yes, I think the performance is not an issue right now: things are running quite smoothly. Let's wait until we get more complains on that 😄 |
useMemo
in two inVisProvider
(one for ndarray creation, one for slicing).unpack(mappedView).flat()
by unpacking a flat array directly.Find domain with cwise.Create data points for line vis with cwise.Create typed array for heatmap texture without calling- no longer callingflat
(pick => shape 1D => unpack), or even without callingFloat64Array.from
(cwise + push to buffer).flat
The text was updated successfully, but these errors were encountered: