Created
April 13, 2024 22:44
-
-
Save mohawk2/e121ec78fa815f7299f8a342999a3016 to your computer and use it in GitHub Desktop.
PDL->random timings with and without pthreading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$each = 1e7; $q = int(1e8/$each); with_time { PDL->random($each) for 1..$q } | |
set_autopthread_size(0) | |
$each approx time | |
1e8 1000ms | |
1e7 1050ms | |
1e6 700ms | |
1e5 740ms | |
1e4 2500ms | |
set_autopthread_size(1e10) | |
$each approx time | |
1e8 1000ms | |
1e7 1010ms | |
1e6 540ms | |
1e5 520ms | |
1e4 520ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment