ants/ants_benchmark_test.go

227 lines
4.8 KiB
Go
Raw Normal View History

2018-05-20 18:57:48 +03:00
// MIT License
2018-05-20 16:25:59 +03:00
// Copyright (c) 2018 Andy Pan
2018-05-20 18:57:48 +03:00
2018-05-20 16:25:59 +03:00
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
2018-05-20 18:57:48 +03:00
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
2018-05-20 16:25:59 +03:00
//
2018-05-20 18:57:48 +03:00
// The above copyright notice and this permission notice shall be included in all
2018-05-20 16:25:59 +03:00
// copies or substantial portions of the Software.
//
2018-05-20 18:57:48 +03:00
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
2018-05-20 16:24:54 +03:00
package ants
2018-05-19 10:57:04 +03:00
import (
"runtime"
2018-05-19 19:11:51 +03:00
"sync"
"sync/atomic"
2018-05-20 16:28:32 +03:00
"testing"
2018-05-23 06:05:23 +03:00
"time"
2022-12-11 14:17:37 +03:00
"golang.org/x/sync/errgroup"
2018-05-19 10:57:04 +03:00
)
2018-05-23 06:05:23 +03:00
const (
2022-12-11 14:17:37 +03:00
RunTimes = 1e6
PoolCap = 5e4
BenchParam = 10
DefaultExpiredTime = 10 * time.Second
2018-07-12 19:11:42 +03:00
)
2018-05-24 08:35:57 +03:00
func demoFunc() {
time.Sleep(time.Duration(BenchParam) * time.Millisecond)
2018-05-24 08:35:57 +03:00
}
2018-05-22 07:01:00 +03:00
func demoPoolFunc(args interface{}) {
2018-07-02 09:56:20 +03:00
n := args.(int)
time.Sleep(time.Duration(n) * time.Millisecond)
2018-05-22 07:01:00 +03:00
}
2018-05-20 06:51:14 +03:00
var stopLongRunningFunc int32
func longRunningFunc() {
for atomic.LoadInt32(&stopLongRunningFunc) == 0 {
runtime.Gosched()
}
}
var stopLongRunningPoolFunc int32
func longRunningPoolFunc(arg interface{}) {
if ch, ok := arg.(chan struct{}); ok {
<-ch
return
}
for atomic.LoadInt32(&stopLongRunningPoolFunc) == 0 {
runtime.Gosched()
}
}
func BenchmarkGoroutines(b *testing.B) {
2018-06-07 09:12:47 +03:00
var wg sync.WaitGroup
2018-05-23 11:43:05 +03:00
for i := 0; i < b.N; i++ {
2018-10-03 15:55:39 +03:00
wg.Add(RunTimes)
2018-05-23 11:43:05 +03:00
for j := 0; j < RunTimes; j++ {
go func() {
demoFunc()
2018-05-23 11:43:05 +03:00
wg.Done()
}()
}
wg.Wait()
}
}
2022-12-11 14:17:37 +03:00
func BenchmarkChannel(b *testing.B) {
2018-10-03 10:12:58 +03:00
var wg sync.WaitGroup
2022-12-11 14:17:37 +03:00
sema := make(chan struct{}, PoolCap)
2018-10-03 10:12:58 +03:00
2022-12-11 14:17:37 +03:00
b.ResetTimer()
2018-10-03 10:12:58 +03:00
for i := 0; i < b.N; i++ {
wg.Add(RunTimes)
for j := 0; j < RunTimes; j++ {
sema <- struct{}{}
go func() {
demoFunc()
2018-10-03 10:12:58 +03:00
<-sema
wg.Done()
}()
}
wg.Wait()
}
}
2022-12-11 14:17:37 +03:00
func BenchmarkErrGroup(b *testing.B) {
var wg sync.WaitGroup
var pool errgroup.Group
pool.SetLimit(PoolCap)
b.ResetTimer()
for i := 0; i < b.N; i++ {
wg.Add(RunTimes)
for j := 0; j < RunTimes; j++ {
pool.Go(func() error {
demoFunc()
wg.Done()
return nil
})
}
wg.Wait()
}
}
func BenchmarkAntsPool(b *testing.B) {
2018-06-07 09:12:47 +03:00
var wg sync.WaitGroup
2022-12-11 14:17:37 +03:00
p, _ := NewPool(PoolCap, WithExpiryDuration(DefaultExpiredTime))
2018-07-02 09:39:31 +03:00
defer p.Release()
2018-07-02 09:35:02 +03:00
2022-12-11 14:17:37 +03:00
b.ResetTimer()
2018-05-23 11:43:05 +03:00
for i := 0; i < b.N; i++ {
2018-10-03 15:55:39 +03:00
wg.Add(RunTimes)
2018-05-23 11:43:05 +03:00
for j := 0; j < RunTimes; j++ {
_ = p.Submit(func() {
demoFunc()
wg.Done()
})
2018-05-23 11:43:05 +03:00
}
wg.Wait()
}
}
func BenchmarkAntsMultiPool(b *testing.B) {
var wg sync.WaitGroup
p, _ := NewMultiPool(10, PoolCap/10, RoundRobin, WithExpiryDuration(DefaultExpiredTime))
defer p.ReleaseTimeout(DefaultExpiredTime) //nolint:errcheck
b.ResetTimer()
for i := 0; i < b.N; i++ {
wg.Add(RunTimes)
for j := 0; j < RunTimes; j++ {
_ = p.Submit(func() {
demoFunc()
wg.Done()
})
}
wg.Wait()
}
}
func BenchmarkGoroutinesThroughput(b *testing.B) {
2018-05-20 06:51:14 +03:00
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
go demoFunc()
2018-10-03 10:12:58 +03:00
}
}
}
2019-04-13 05:35:39 +03:00
func BenchmarkSemaphoreThroughput(b *testing.B) {
2022-12-11 14:17:37 +03:00
sema := make(chan struct{}, PoolCap)
2018-10-03 10:12:58 +03:00
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
sema <- struct{}{}
go func() {
demoFunc()
2018-10-03 10:12:58 +03:00
<-sema
}()
2018-05-20 06:51:14 +03:00
}
}
}
2018-05-19 19:11:51 +03:00
2019-04-13 05:35:39 +03:00
func BenchmarkAntsPoolThroughput(b *testing.B) {
2022-12-11 14:17:37 +03:00
p, _ := NewPool(PoolCap, WithExpiryDuration(DefaultExpiredTime))
2018-07-02 09:39:31 +03:00
defer p.Release()
b.ResetTimer()
for i := 0; i < b.N; i++ {
2022-12-11 14:17:37 +03:00
for j := 0; j < RunTimes; j++ {
_ = p.Submit(demoFunc)
}
}
}
func BenchmarkAntsMultiPoolThroughput(b *testing.B) {
p, _ := NewMultiPool(10, PoolCap/10, RoundRobin, WithExpiryDuration(DefaultExpiredTime))
defer p.ReleaseTimeout(DefaultExpiredTime) //nolint:errcheck
b.ResetTimer()
for i := 0; i < b.N; i++ {
for j := 0; j < RunTimes; j++ {
_ = p.Submit(demoFunc)
}
}
}
2023-11-21 13:16:18 +03:00
func BenchmarkParallelAntsPoolThroughput(b *testing.B) {
p, _ := NewPool(PoolCap, WithExpiryDuration(DefaultExpiredTime))
defer p.Release()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_ = p.Submit(demoFunc)
}
})
}
func BenchmarkParallelAntsMultiPoolThroughput(b *testing.B) {
p, _ := NewMultiPool(10, PoolCap/10, RoundRobin, WithExpiryDuration(DefaultExpiredTime))
defer p.ReleaseTimeout(DefaultExpiredTime) //nolint:errcheck
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_ = p.Submit(demoFunc)
}
})
}