-
Notifications
You must be signed in to change notification settings - Fork 98
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
A small performance optimization #10
Comments
Hey @sumerc thank you so much for taking an interest in this and reaching out. I love geeking out about this stuff : ). As far as your change is concerned, I'd love to see a PR for it. I can totally see how it's faster for the function you've shown, but the code inside of fgprof is slightly different. The Anyway, if it's a small change I'd still be happy to merge it. And I'm also happy to just discuss ideas on how to make things faster in general! |
Me too! Thanks for such inclusive/positive comment :)
I understood. Thanks again! |
Closing this since #11 was closed. |
Hey Felix,
I was playing with runtime package/profilers a bit for learning and while trying out different things, I happen to see following code is used to retrieve all Goroutines:
However it turns out following is a bit faster as
runtime.NumGoroutine()
just returnslen(gcount())
whereasGoroutineProfile
seems to do bunch of other things.I have benchmarked following function:
And the results are:
While not too significant, it is not bad for a single line of change.
Would you be interested for a PR for this? Is there any other problem with the approach?
The text was updated successfully, but these errors were encountered: