Skip to content

Instantly share code, notes, and snippets.

@niczky12
Last active December 8, 2022 22:27
Show Gist options
  • Save niczky12/1ac34ad2d176e768fa5552e5874f9139 to your computer and use it in GitHub Desktop.
Save niczky12/1ac34ad2d176e768fa5552e5874f9139 to your computer and use it in GitHub Desktop.
using BenchmarkTools
# benchmarking single thread performance
N = 10_000
# 8.167 μs
@btime sum(ismultiple12.(1:N))
# without boradcasting, even faster!
# 5.800 μs
@btime sum(ismultiple12, 1:N)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment