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
In case anyone is clustering large datasets:
in my experiments (40M corpus and NofClusters=1000), turning on compiler optimization with "-O3" yields speed-ups of around 3.
I changed the following lines in my Makefile:
wcluster: $(files) g++ -Wall -g -O3 -o wcluster $(files) %.o: %.cc g++ -Wall -g -O3 -o $@ -c $<
The text was updated successfully, but these errors were encountered:
I'm surprised I didn't have it in there before. It's added now - thanks for the note!
-Percy
On Thu, Sep 5, 2013 at 4:57 AM, Simon Suster [email protected]:
In case anyone is clustering large datasets: in my experiments (40M corpus and NofClusters=1000), turning on compiler optimization with "-O3" yields speed-ups of around 3. I changed the following lines in my Makefile: wcluster: $(files) g++ -Wall -g -O3 -o wcluster $(files) %.o: %.cc g++ -Wall -g -O3 -o $@ -c $< — Reply to this email directly or view it on GitHubhttps://github.com//issues/6 .
wcluster: $(files)
g++ -Wall -g -O3 -o wcluster $(files)
%.o: %.cc g++ -Wall -g -O3 -o $@ -c $<
— Reply to this email directly or view it on GitHubhttps://github.com//issues/6 .
Sorry, something went wrong.
No branches or pull requests
In case anyone is clustering large datasets:
in my experiments (40M corpus and NofClusters=1000), turning on compiler optimization with "-O3" yields speed-ups of around 3.
I changed the following lines in my Makefile:
The text was updated successfully, but these errors were encountered: