Advertisement
Guest User

benchmark

a guest
Oct 16th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Julia 1.07 KB | None | 0 0
  1. julia> @benchmark PE_022()
  2. BenchmarkTools.Trial:
  3.   memory estimate:  1.02 MiB
  4.   allocs estimate:  36188
  5.   --------------
  6.   minimum time:     3.574 ms (0.00% GC)
  7.   median time:      3.731 ms (0.00% GC)
  8.   mean time:        3.828 ms (1.85% GC)
  9.   maximum time:     5.820 ms (27.90% GC)
  10.   --------------
  11.   samples:          1305
  12.   evals/sample:     1
  13.  
  14. julia> @benchmark PE_022_alt_1()
  15. BenchmarkTools.Trial:
  16.   memory estimate:  1.13 MiB
  17.   allocs estimate:  38016
  18.   --------------
  19.   minimum time:     3.622 ms (0.00% GC)
  20.   median time:      3.810 ms (0.00% GC)
  21.   mean time:        3.904 ms (2.04% GC)
  22.   maximum time:     6.016 ms (26.51% GC)
  23.   --------------
  24.   samples:          1280
  25.   evals/sample:     1
  26.  
  27. julia> @benchmark PE_022_alt_2()
  28. BenchmarkTools.Trial:
  29.   memory estimate:  1.13 MiB
  30.   allocs estimate:  38016
  31.   --------------
  32.   minimum time:     3.669 ms (0.00% GC)
  33.   median time:      3.891 ms (0.00% GC)
  34.   mean time:        3.999 ms (2.09% GC)
  35.   maximum time:     7.677 ms (28.38% GC)
  36.   --------------
  37.   samples:          1250
  38.   evals/sample:     1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement