Skip to content

Instantly share code, notes, and snippets.

@pragtobgists
Last active July 12, 2016 07:07
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/d6a970e975ea56718eff9c5930171d3d to your computer and use it in GitHub Desktop.
Save pragtobgists/d6a970e975ea56718eff9c5930171d3d to your computer and use it in GitHub Desktop.
Mutliple formatters in benchee
list = Enum.to_list(1..10_000)
map_fun = fn(i) -> [i, i * i] end
Benchee.run(
%{
formatters: [
&Benchee.Formatters.CSV.output/1,
&Benchee.Formatters.Console.output/1
],
csv: %{file: "my.csv"}
},
%{
"flat_map" => fn -> Enum.flat_map(list, map_fun) end,
"map.flatten" => fn -> list |> Enum.map(map_fun) |> List.flatten end
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment