Skip to content

Instantly share code, notes, and snippets.

@mohawk2
Created April 13, 2024 22:44
Show Gist options
  • Save mohawk2/e121ec78fa815f7299f8a342999a3016 to your computer and use it in GitHub Desktop.
Save mohawk2/e121ec78fa815f7299f8a342999a3016 to your computer and use it in GitHub Desktop.
PDL->random timings with and without pthreading
$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