This repository was archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_bench_test.go
127 lines (116 loc) · 2.83 KB
/
image_bench_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package image_test
import (
"testing"
"github.com/elgopher/pixiq/image"
)
func BenchmarkSelection_SetColor(b *testing.B) {
var (
color = image.RGBA(10, 20, 30, 40)
img = image.New(acceleratedImageStub{width: 1920, height: 1080})
selection = img.WholeImageSelection()
height = selection.Height()
width = selection.Width()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
for y := 0; y < height; y++ {
for x := 0; x < width; x++ {
selection.SetColor(x, y, color)
}
}
}
}
func BenchmarkSelection_Color(b *testing.B) {
var (
img = image.New(acceleratedImageStub{width: 1920, height: 1080})
selection = img.WholeImageSelection()
height = selection.Height()
width = selection.Width()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
for y := 0; y < height; y++ {
for x := 0; x < width; x++ {
selection.Color(x, y)
}
}
}
}
func BenchmarkLines_LineForWrite(b *testing.B) {
var (
color = image.RGBA(10, 20, 30, 40)
img = image.New(acceleratedImageStub{width: 1920, height: 1080})
selection = img.WholeImageSelection()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
lines := selection.Lines()
for y := 0; y < lines.Length(); y++ {
line := lines.LineForWrite(y)
for x := 0; x < len(line); x++ {
line[x] = color
}
}
}
}
func BenchmarkLines_LineForRead(b *testing.B) {
var (
img = image.New(acceleratedImageStub{width: 1920, height: 1080})
selection = img.WholeImageSelection()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
lines := selection.Lines()
for y := 0; y < lines.Length(); y++ {
line := lines.LineForRead(y)
for x := 0; x < len(line); x++ {
_ = line[x]
}
}
}
}
// Must be 0 allocs/op
func BenchmarkImage_Selection(b *testing.B) {
var (
img = image.New(acceleratedImageStub{width: 1, height: 1})
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
img.Selection(1, 2).WithSize(3, 4)
}
}
// Must be 0 allocs/op
func BenchmarkSelection_Selection(b *testing.B) {
var (
img = image.New(acceleratedImageStub{width: 1, height: 1})
selection = img.WholeImageSelection()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
selection.Selection(1, 2).WithSize(3, 4)
}
}
// Must be 0 allocs/op
func BenchmarkSelection_Modify(b *testing.B) {
var (
img = image.New(acceleratedImageStub{width: 1, height: 1})
selection = img.WholeImageSelection()
command = &acceleratedCommandStub{}
sourceSelection = img.WholeImageSelection()
)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
selection.Modify(command, sourceSelection)
}
}
type acceleratedCommandStub struct {
}
func (a acceleratedCommandStub) Run(output image.AcceleratedImageSelection, selections []image.AcceleratedImageSelection) {
}