Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate addition chains for exponentiation by fixed value in Sqrt #97

Merged
merged 16 commits into from
Nov 12, 2021

Conversation

gbotrel
Copy link
Collaborator

@gbotrel gbotrel commented Nov 11, 2021

Using github.com/mmcloughlin/addchain (which is awesome 👍 ) ; code-generate exp by fix exponent for the field element Sqrt methods. A part from bls12-377 (using TonelliShanks) speed up for Sqrt is ~20%:

2021/11/10 19:39:41 comparing ../ecc/bls12-377/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  30.2µs ± 1%  28.3µs ± 1%  -6.32%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bls12-377/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  15.4µs ± 1%  14.2µs ± 1%  -8.26%  (p=0.000 n=9+10)


2021/11/10 19:39:41 comparing ../ecc/bls12-381/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  16.8µs ± 2%  12.3µs ± 1%  -26.37%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bls12-381/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  10.7µs ± 1%   8.9µs ± 0%  -16.39%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bls24-315/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  11.6µs ± 1%   9.8µs ± 1%  -15.76%  (p=0.000 n=9+10)


2021/11/10 19:39:41 comparing ../ecc/bls24-315/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  7.58µs ± 2%  6.38µs ± 1%  -15.82%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bn254/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  5.63µs ± 1%  4.59µs ± 1%  -18.51%  (p=0.000 n=10+9)


2021/11/10 19:39:41 comparing ../ecc/bn254/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  9.09µs ± 1%  7.92µs ± 1%  -12.79%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bw6-633/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  67.9µs ± 1%  52.9µs ± 1%  -22.16%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bw6-633/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  11.6µs ± 1%   9.7µs ± 1%  -16.21%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bw6-761/fp ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16   131µs ± 2%   105µs ± 1%  -19.62%  (p=0.000 n=10+10)


2021/11/10 19:39:41 comparing ../ecc/bw6-761/fr ElementSqrt
name            old time/op  new time/op  delta
ElementSqrt-16  30.6µs ± 1%  28.3µs ± 1%  -7.63%  (p=0.000 n=10+10)

Which should impact positively point decompression, among other things.

Generated code is in element_exp.go to avoid cluttering element.go .

Generated code for Legendre too, may not be worth it (not measured). For bls12-377 we may want to keep the older version for readability.

@gbotrel
Copy link
Collaborator Author

gbotrel commented Nov 11, 2021

Update: worth it to keep it for Legendre (similar perf improvement).

Keeping it for sake of code generation simplicity for bls12-377, but this #98 will change our numbers anyway.

Copy link
Collaborator

@yelhousni yelhousni left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💯

@gbotrel gbotrel merged commit 264e9a7 into develop Nov 12, 2021
@gbotrel gbotrel deleted the feat-addchain branch November 12, 2021 15:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants