Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add filter benchmark #9

Merged
merged 1 commit into from
Jan 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
166 changes: 166 additions & 0 deletions bench/filter_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
package gcf_test

import (
"testing"

"github.com/meian/gcf"
)

func BenchmarkFilter_100_1(b *testing.B) {
// usually case
benchFilter(b, 100, 1, func(i int) func(int) bool {
return func(v int) bool {
return v/100 > i
}
})
}

func BenchmarkFilter_1000_10(b *testing.B) {
// usually large case
benchFilter(b, 1000, 10, func(i int) func(int) bool {
return func(v int) bool {
return v/100 > i
}
})
}

func BenchmarkFilter_100_100(b *testing.B) {
benchFilter(b, 100, 100, func(i int) func(int) bool {
return func(v int) bool {
return v > i
}
})
}

func BenchmarkFilter_200_100(b *testing.B) {
benchFilter(b, 200, 100, func(i int) func(int) bool {
return func(v int) bool {
return v/2 > i
}
})
}

func BenchmarkFilter_1000_100(b *testing.B) {
benchFilter(b, 1000, 100, func(i int) func(int) bool {
return func(v int) bool {
return v/10 > i
}
})
}

func BenchmarkFilter_100_200(b *testing.B) {
benchFilter(b, 100, 200, func(i int) func(int) bool {
return func(v int) bool {
return v*2 > i
}
})
}

func BenchmarkFilter_100_1000(b *testing.B) {
benchFilter(b, 100, 1000, func(i int) func(int) bool {
return func(v int) bool {
return v*10 > i
}
})
}

func benchFilter(b *testing.B, sLen, itCnt int, f func(int) func(int) bool) {
s := make([]int, sLen)
for i := range s {
s[i] = i + 1
}
itb := gcf.FromSlice(s)
for i := 0; i < itCnt; i++ {
i := i
itb = gcf.Filter(itb, f(i))
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
sum := 0
it := itb.Iterator()
for it.MoveNext() {
sum += it.Current()
}
}
}

func BenchmarkOnLoop_100_1(b *testing.B) {
benchOnLoop(b, 100, 1, func(v int) func(int) bool {
return func(i int) bool {
return v/100 > i
}
})
}

func BenchmarkOnLoop_1000_10(b *testing.B) {
benchOnLoop(b, 1000, 10, func(v int) func(int) bool {
return func(i int) bool {
return v/100 > i
}
})
}

func BenchmarkOnLoop_100_100(b *testing.B) {
benchOnLoop(b, 100, 100, func(v int) func(int) bool {
return func(i int) bool {
return v > i
}
})
}

func BenchmarkOnLoop_200_100(b *testing.B) {
benchOnLoop(b, 200, 100, func(v int) func(int) bool {
return func(i int) bool {
return v/2 > i
}
})
}

func BenchmarkOnLoop_1000_100(b *testing.B) {
benchOnLoop(b, 1000, 100, func(v int) func(int) bool {
return func(i int) bool {
return v/10 > i
}
})
}

func BenchmarkOnLoop_100_200(b *testing.B) {
benchOnLoop(b, 100, 200, func(v int) func(int) bool {
return func(i int) bool {
return v*2 > i
}
})
}

func BenchmarkOnLoop_100_1000(b *testing.B) {
benchOnLoop(b, 100, 1000, func(v int) func(int) bool {
return func(i int) bool {
return v*10 > i
}
})
}

func benchOnLoop(b *testing.B, sLen, lpCnt int, f func(int) func(int) bool) {
s := make([]int, sLen)
for i := range s {
s[i] = i + 1
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
sum := 0
for _, v := range s {
if filterOnLoop(f(v), lpCnt) {
sum += v
}
}
}
}

func filterOnLoop(f func(int) bool, n int) bool {
for i := 0; i < n; i++ {
if !f(i) {
return false
}
}
return true
}