Skip to content

Instantly share code, notes, and snippets.

@alksl
Created August 13, 2015 12:11
Show Gist options
  • Save alksl/542d122a4fac74eec12c to your computer and use it in GitHub Desktop.
Save alksl/542d122a4fac74eec12c to your computer and use it in GitHub Desktop.
% Experiments on 5% of the data
% Parralellisation 8 workers 4 cores with hyperthreading
>> tic; trainLFM(P, 10, 1, 1); toc
Elapsed time is 150.857689 seconds.
>> tic; trainLFM(P, 100, 1, 1); toc
Elapsed time is 2153.943994 seconds.
% Just threads
>> tic; trainLFM(P, 10, 1, 1); toc
Elapsed time is 237.715121 seconds.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment