Skip to content

Instantly share code, notes, and snippets.

@pragtobgists
Created December 1, 2016 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pragtobgists/81adfbdc0d54760666a6887650e26d9f to your computer and use it in GitHub Desktop.
Save pragtobgists/81adfbdc0d54760666a6887650e26d9f to your computer and use it in GitHub Desktop.
Multiple inputs
map_fun = fn(i) -> [i, i * i] end
Benchee.run(%{
"flat_map" => fn(input) -> Enum.flat_map(input, map_fun) end,
"map.flatten" => fn(input) -> input |> Enum.map(map_fun) |> List.flatten end
},
inputs: %{
"Small" => Enum.to_list(1..1000),
"Bigger" => Enum.to_list(1..100_000)
})
Erlang/OTP 19 [erts-8.1] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false]
Elixir 1.3.4
Benchmark suite executing with the following configuration:
warmup: 2.0s
time: 5.0s
parallel: 1
inputs: Bigger, Small
Estimated total run time: 28.0s
Benchmarking with input Bigger:
Benchmarking flat_map...
Benchmarking map.flatten...
Benchmarking with input Small:
Benchmarking flat_map...
Benchmarking map.flatten...
##### With input Bigger #####
Name ips average deviation median
map.flatten 139.35 7.18 ms ±8.86% 7.06 ms
flat_map 70.91 14.10 ms ±18.04% 14.37 ms
Comparison:
map.flatten 139.35
flat_map 70.91 - 1.97x slower
##### With input Small #####
Name ips average deviation median
map.flatten 18.14 K 55.13 μs ±9.31% 54.00 μs
flat_map 10.65 K 93.91 μs ±8.70% 94.00 μs
Comparison:
map.flatten 18.14 K
flat_map 10.65 K - 1.70x slower
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment