We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f508e5 commit f955a45Copy full SHA for f955a45
mag_test.go
@@ -3,11 +3,13 @@ package main
3
import (
4
"crypto/rand"
5
6
+ "github.com/bemasher/rtlamr/decode"
7
+
8
"testing"
9
)
10
11
func BenchmarkSqrtMag(b *testing.B) {
- lut := NewSqrtMagLUT()
12
+ lut := decode.NewSqrtMagLUT()
13
input := make([]byte, 8192)
14
output := make([]float64, 4096)
15
@@ -22,7 +24,7 @@ func BenchmarkSqrtMag(b *testing.B) {
22
24
}
23
25
26
func BenchmarkAlphaMaxBetaMinMag(b *testing.B) {
- lut := NewAlphaMaxBetaMinLUT()
27
+ lut := decode.NewAlphaMaxBetaMinLUT()
28
29
30
0 commit comments