Skip to content

Commit a656795

Browse files
style: format entropy_bench_test.go with gofumpt (#42)
Co-authored-by: CommandCodeBot <noreply@commandcode.ai>
1 parent 2211852 commit a656795

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/fastops/entropy_bench_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
func BenchmarkEntropyFilter(b *testing.B) {
99
sizes := []int{256, 1024, 4096, 16384}
1010
d := NewDispatcher()
11-
11+
1212
for _, size := range sizes {
1313
data := make([]float64, size)
1414
for i := range data {
1515
data[i] = rand.Float64()
1616
}
17-
17+
1818
b.Run(benchName(size), func(b *testing.B) {
1919
for i := 0; i < b.N; i++ {
2020
_ = d.EntropyFilter(data)

0 commit comments

Comments
 (0)