internal/radix51: add benchmarks

This commit is contained in:
Filippo Valsorda 2019-04-03 13:00:11 -04:00 committed by George Tankersley
parent 6078ef5b5f
commit 294e169e12
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
// Copyright (c) 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package radix51_test
import (
"testing"
"github.com/gtank/ristretto255/internal/radix51"
)
func BenchmarkAdd(b *testing.B) {
var x, y radix51.FieldElement
x.One()
y.Add(radix51.One, radix51.One)
b.ResetTimer()
for i := 0; i < b.N; i++ {
x.Add(&x, &y)
}
}
func BenchmarkMul(b *testing.B) {
var x, y radix51.FieldElement
x.One()
y.Add(radix51.One, radix51.One)
b.ResetTimer()
for i := 0; i < b.N; i++ {
x.Mul(&x, &y)
}
}