-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathrecover_from_samples_bench_test.go
52 lines (47 loc) · 1.27 KB
/
recover_from_samples_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
package kzg
import (
"fmt"
"github.com/protolambda/go-kzg/bls"
"math/rand"
"testing"
)
func benchRecoverPolyFromSamples(scale uint8, seed int64, b *testing.B) {
fs := NewFFTSettings(scale)
poly := make([]bls.Fr, fs.MaxWidth, fs.MaxWidth)
for i := uint64(0); i < fs.MaxWidth/2; i++ {
bls.AsFr(&poly[i], i)
}
rng := rand.New(rand.NewSource(seed))
data, _ := fs.FFT(poly, false)
samples := make([]*bls.Fr, fs.MaxWidth, fs.MaxWidth)
for i := 0; i < len(data); i++ {
samples[i] = &data[i]
}
// randomly zero out half of the points
for i := 0; i < len(samples)/2; i++ {
j := rng.Intn(len(samples))
for samples[j] == nil {
j = rng.Intn(len(samples))
}
samples[j] = nil
}
b.ResetTimer()
for bi := 0; bi < b.N; bi++ {
recovered, err := fs.RecoverPolyFromSamples(samples, fs.ZeroPolyViaMultiplication)
if err != nil {
b.Fatal(err)
}
for i := 0; i < len(data); i++ {
if !bls.EqualFr(&recovered[i], &data[i]) {
b.Fatalf("bad recovered output %d: %s <> %s", i, bls.FrStr(&recovered[i]), bls.FrStr(&data[i]))
}
}
}
}
func BenchmarkFFTSettings_RecoverPolyFromSamples(b *testing.B) {
for scale := uint8(5); scale < 16; scale++ {
b.Run(fmt.Sprintf("scale_%d", scale), func(b *testing.B) {
benchRecoverPolyFromSamples(scale, int64(scale), b)
})
}
}