Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkSquare (0.14 sec)

  1. lib/fips140/v1.0.0.zip

    := new(Element).Add(x, x) b.ResetTimer() for i := 0; i < b.N; i++ { x.Add(x, y) } } func BenchmarkMultiply(b *testing.B) { x := new(Element).One() y := new(Element).Add(x, x) b.ResetTimer() for i := 0; i < b.N; i++ { x.Multiply(x, y) } } func BenchmarkSquare(b *testing.B) { x := new(Element).Add(feOne, feOne) b.ResetTimer() for i := 0; i < b.N; i++ { x.Square(x) } } func BenchmarkInvert(b *testing.B) { x := new(Element).Add(feOne, feOne) b.ResetTimer() for i := 0; i < b.N; i++ { x.Invert(x) } } func...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top