Skip to content

Instantly share code, notes, and snippets.

@yutakahashi114
Last active March 26, 2021 11:55
Show Gist options
  • Save yutakahashi114/8f2ba7001c2e15c014bd9ccc3268f868 to your computer and use it in GitHub Desktop.
Save yutakahashi114/8f2ba7001c2e15c014bd9ccc3268f868 to your computer and use it in GitHub Desktop.
func Benchmark_splitInsert_1(b *testing.B) {
base(b, 1, splitInsert)
}
func Benchmark_splitInsert_10(b *testing.B) {
base(b, 10, splitInsert)
}
func Benchmark_splitInsert_100(b *testing.B) {
base(b, 100, splitInsert)
}
func Benchmark_splitInsert_1000(b *testing.B) {
base(b, 1000, splitInsert)
}
func Benchmark_splitInsert_10000(b *testing.B) {
base(b, 10000, splitInsert)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment