-
Notifications
You must be signed in to change notification settings - Fork 519
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
Wrong engine type in graph_algorithsm #169
Comments
This problem was fixed in September before its release. Which version of the source are you accessing? |
As far as I can see, this is in the repository right now (from the front page, https://github.com/graphlab-code/graphlab. The time of the commit is September 15 (and seems to be the latest change to the directory graph_algorithsm), commit 7e0a808. In fact, in this commit, the original option for setting the engine type was changed to be hard-coded to this value. |
Hi August, thanks!! |
I submitted a pull request where I changed the spelling. However, according to discussion with Daniel, it sounds like this should have already been added a while ago. Could there be other changes that are not reflected in the current repository? I ask this because on a related note, as I was trying to run the betweeeness code, the application would report a betweeneess of 0 for every node in my graph, and I'm not sure if it may be due to the code I have reflecting what should actually be there. |
I just merged your code - thanks again! My suggestion is to diff Daniel's http://www.graphlab.com Danny Bickson On Sat, Dec 6, 2014 at 8:15 PM, august782 [email protected] wrote:
|
Multiple updates to my Github account have disappeared and contents to several posts have changed from happy users to complaints. I seem to have been hit by a hacker redirect on my production box and there was source code damage on the box itself. I'm doing what I can. |
dbickson, in future, please do not confirm to me that my source code has been correctly received if the code you received was not working. |
In the graph_algorithms directory (graphlab/toolkits/graph_algorithms), the engine type passed to the constructor of the omni_engine is incorrectly spelled as "asyncronous" instead of "asynchronous", e.g. in djikstra.cpp line 407:
graphlab::omni_engine engine(dc, graph, "asyncronous", clopts);
Running any of these applications would fail as the hard-coded value is not acceptable, crashing the system with a fatal error. This hard-coded value should be changed to "async" or "asynchronous" to run correctly.
The text was updated successfully, but these errors were encountered: