Skip to content

Instantly share code, notes, and snippets.

@chhetripradeep
Last active May 1, 2019 17:11
Show Gist options
  • Save chhetripradeep/0243d40048dfd3b27a96470981cb1e33 to your computer and use it in GitHub Desktop.
Save chhetripradeep/0243d40048dfd3b27a96470981cb1e33 to your computer and use it in GitHub Desktop.
import libmyrustlib
iterations = 100
def test_concat_basic(benchmark):
benchmark(concat_basic, iterations)
def test_concat_join(benchmark):
benchmark(concat_join, iterations)
def test_concat_comprehensions(benchmark):
benchmark(concat_comprehensions, iterations)
def test_concat_rust(benchmark):
benchmark(libmyrustlib.rust_concat, iterations)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment