We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I try to run the example dataset
mpirun -n 72 pfsm -file ./Datasets/lg/patent_citations.lg -freq 28000 -threads 4
but in the end, the output stops at
Graph loading [master] took 68 sec and 701 ms Mining took 101 sec and 155 ms
I looked at the code, the next it should exec the following code
cout<<"Graph loading [master] took "<<(Settings::graphLoadingTime/1000)<<" sec and "<<(Settings::graphLoadingTime%1000)<<" ms"<<endl; cout<<"Mining took "<<(elapsed/1000)<<" sec and "<<(elapsed%1000)<<" ms"<<endl; cout<<"Finished!"; // MPI::Finalize(); MPI_Finalize(); delete miner; delete exactMiner;
I am confused as to why it stops at print Finished!.
Finished!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to run the example dataset
but in the end, the output stops at
I looked at the code, the next it should exec the following code
I am confused as to why it stops at print
Finished!
.The text was updated successfully, but these errors were encountered: