-
Notifications
You must be signed in to change notification settings - Fork 0
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
Doing expression plot is slow for 1000+ functions #354
Comments
I think the problem is inside the for loop of plotting all the |
Relates to #271 |
I attempted to fix this with #378 but the changes I made had next to no effect. Doing a little more profiling, the main slowdown I can localise is just simply caused by calling The reason it gets progressively slower with additional functions is I think because each call to The only other way I can think which might address this, which could get us at most a 5x speedup (which isn't nothing, but isn't nearly as good as the speedup we got in #374), would be to reduce to a single Depending on how much this or isn't causing a problem, we could either attempt the above, or close this as a @young-x-skyee @neukym I'd appreciate your thoughts! Have I missed some other source of slowdown? |
When I tried to do expression plot using
expression_plot
for the activation of whisper large model, I noticed that it is very slow with a large memory use (increased slowly) at the beginning and then high CPU use but low memory use. That was where it got stuck.The text was updated successfully, but these errors were encountered: