-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
graph centrality benchmark #1163
Comments
The single biggest problem seems to be iterating over Sets. The way it wraps Dict iteration is probably part of it. Dict could also be better in general; ObjectIdDict is still much faster. I also notice that |
Just noticed this is now significantly faster than it used to be. |
@JeffBezanson is this issue finished? Anything remaining? |
In my quick benchmarking with the codes from the gist, it appears that we are a bit faster than the C++ code, and much faster than the python code. |
See this discussion of Julia vs. Python vs. C++ performance on a graph centrality computation. We should turn this into a perf2 benchmark and make sure we get within 2x of C++. Sample code:
Sample data: http://www.udacity.com/view#Course/cs215/CourseRev/1/Unit/273003/Nugget/292002.
The text was updated successfully, but these errors were encountered: