perf: direct Fp6 extension for BW6-761#1126
Merged
Merged
Conversation
9 tasks
Collaborator
|
Suggested edit: diff --git a/std/algebra/emulated/fields_bw6761/e6.go b/std/algebra/emulated/fields_bw6761/e6.go
index 976d4f9d..433b92cc 100644
--- a/std/algebra/emulated/fields_bw6761/e6.go
+++ b/std/algebra/emulated/fields_bw6761/e6.go
@@ -182,7 +182,7 @@ func (e Ext6) Conjugate(x *E6) *E6 {
}
}
-func mulFpByNonResidue(fp *curveF, x *baseEl) *baseEl {
+func (e Ext6) mulFpByNonResidue(fp *curveF, x *baseEl) *baseEl {
z := fp.Neg(x)
z = fp.MulConst(z, big.NewInt(4))
@@ -739,7 +739,7 @@ func (e Ext6) Square(x *E6) *E6 {
tmp = e.fp.Add(&x.A1, &x.A3)
c1 = e.fp.Mul(c1, tmp)
c1 = e.fp.Sub(c1, e.fp.Add(t0, t1))
- t2 = mulFpByNonResidue(e.fp, t2)
+ t2 = e.mulFpByNonResidue(e.fp, t2)
// c2
c20 := e.fp.Add(c0, t0)
c21 := e.fp.Add(c1, t2)
@@ -761,7 +761,7 @@ func (e Ext6) Square(x *E6) *E6 {
tmp = e.fp.Add(c30, c31)
c1 = e.fp.Mul(c1, tmp)
c1 = e.fp.Sub(c1, e.fp.Add(t0, t1))
- t2 = mulFpByNonResidue(e.fp, t2)
+ t2 = e.mulFpByNonResidue(e.fp, t2)
c00 = e.fp.Add(c0, t0)
c01 = e.fp.Add(c1, t2)
c02 = e.fp.Add(c2, t1)
@@ -797,7 +797,7 @@ func (e Ext6) CyclotomicSquareKarabina12345(x *E6) *E6 {
// h4 = -g4 + 3((g3+g5)(g1+c*g2)-g1g5-c*g3g2)
g1g5 := e.fp.Mul(&x.A2, &x.A5)
g3g2 := e.fp.Mul(&x.A1, &x.A4)
- h4 := mulFpByNonResidue(e.fp, &x.A4)
+ h4 := e.mulFpByNonResidue(e.fp, &x.A4)
h4 = e.fp.Add(h4, &x.A2)
t := e.fp.Add(&x.A1, &x.A5)
h4 = e.fp.Mul(h4, t)
@@ -808,13 +808,13 @@ func (e Ext6) CyclotomicSquareKarabina12345(x *E6) *E6 {
h4 = e.fp.Sub(h4, &x.A3)
// h3 = 2(g3+3c*g1g5)
- h3 := mulFpByNonResidue(e.fp, g1g5)
+ h3 := e.mulFpByNonResidue(e.fp, g1g5)
h3 = e.fp.MulConst(h3, big.NewInt(3))
h3 = e.fp.Add(h3, &x.A1)
h3 = e.fp.MulConst(h3, big.NewInt(2))
// h2 = 3((g1+g5)(g1+c*g5)-(c+1)*g1g5)-2g2
- t = mulFpByNonResidue(e.fp, &x.A5)
+ t = e.mulFpByNonResidue(e.fp, &x.A5)
t = e.fp.Add(t, &x.A2)
h2 := e.fp.Add(&x.A5, &x.A2)
h2 = e.fp.Mul(h2, t)
@@ -825,7 +825,7 @@ func (e Ext6) CyclotomicSquareKarabina12345(x *E6) *E6 {
h2 = e.fp.Sub(h2, t)
// h1 = 3((g3+g2)(g3+c*g2)-(c+1)*g3g2)-2g1
- t = mulFpByNonResidue(e.fp, &x.A4)
+ t = e.mulFpByNonResidue(e.fp, &x.A4)
t = e.fp.Add(t, &x.A1)
h1 := e.fp.Add(&x.A4, &x.A1)
h1 = e.fp.Mul(h1, t)
diff --git a/std/algebra/emulated/fields_bw6761/e6_pairing.go b/std/algebra/emulated/fields_bw6761/e6_pairing.go
index 3365e900..12cbf4ab 100644
--- a/std/algebra/emulated/fields_bw6761/e6_pairing.go
+++ b/std/algebra/emulated/fields_bw6761/e6_pairing.go
@@ -1,8 +1,9 @@
package fields_bw6761
import (
- "github.com/consensys/gnark/std/math/emulated"
"math/big"
+
+ "github.com/consensys/gnark/std/math/emulated"
)
func (e Ext6) nSquareKarabina12345(z *E6, n int) *E6 {
@@ -252,7 +253,7 @@ func (e *Ext6) MulBy02345(z *E6, x [5]*baseEl) *E6 {
c1 = e.fp.Mul(c1, tmp)
c1 = e.fp.Sub(c1, t0)
c1 = e.fp.Sub(c1, t1)
- t2 = mulFpByNonResidue(e.fp, t2)
+ t2 = e.mulFpByNonResidue(e.fp, t2)
a0 = e.fp.Add(c0, t0)
a1 = e.fp.Add(c1, t2)
a2 = e.fp.Add(c2, t1)
@@ -276,7 +277,7 @@ func (e *Ext6) MulBy02345(z *E6, x [5]*baseEl) *E6 {
c1 = e.fp.Mul(c1, tmp)
c1 = e.fp.Sub(c1, t0)
c1 = e.fp.Sub(c1, t1)
- t2 = mulFpByNonResidue(e.fp, t2)
+ t2 = e.mulFpByNonResidue(e.fp, t2)
b0 := e.fp.Add(c0, t0)
b1 = e.fp.Add(c1, t2)
b2 = e.fp.Add(c2, t1)
@@ -292,7 +293,7 @@ func (e *Ext6) MulBy02345(z *E6, x [5]*baseEl) *E6 {
c1 = e.fp.Add(&z.A1, &z.A3)
c1 = e.fp.Mul(c1, x[2])
c1 = e.fp.Sub(c1, t1)
- tmp = mulFpByNonResidue(e.fp, t2)
+ tmp = e.mulFpByNonResidue(e.fp, t2)
c1 = e.fp.Add(c1, tmp)
tmp = e.fp.Add(&z.A1, &z.A5)
c2 = e.fp.Mul(x[4], tmp)
@@ -306,7 +307,7 @@ func (e *Ext6) MulBy02345(z *E6, x [5]*baseEl) *E6 {
tmp = e.fp.Add(b2, c2)
z12 := e.fp.Sub(a2, tmp)
- z00 := mulFpByNonResidue(e.fp, c2)
+ z00 := e.mulFpByNonResidue(e.fp, c2)
z00 = e.fp.Add(z00, b0)
z01 := e.fp.Add(c0, b1)
z02 := e.fp.Add(c1, b2)
|
ivokub
approved these changes
May 7, 2024
Collaborator
ivokub
left a comment
There was a problem hiding this comment.
Small suggestion for making mulFpByNonResidue as a method of Ext6. But otherwise imo looks all perfect. I didn't check through all the equations closely, but the hinted computation seems to be properly and fully constrained and the tests are all good (plus the additional test ensures that new methods are complete), so I think it is good to go!
Great work! I guess with the direct extension now we can more easily try out the polynomial identity checking variants of multiplications also.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
In this PR we use a mix of towers to do arithmetic over Fp6. For multiplication we use Toom-6 and for squaring we use Complex over Chung-Hasan SQR2 (quadratic over cubic). For sparse multiplications we use custom functions with mapping to the direct extension. We also experimented with Karatsuba, Toom-3 and Montgomery-6 but kept the best options given the Plonkish constraints model (additions are not free, multiplications by constants are free...) and the emulated arithmetic cost (subtractions are costlier than additions, multiplication by large constants does add constraints...).
refs.:
Type of change
How has this been tested?
How has this been benchmarked?
e(P1,Q1) * e(P2,Q2):Checklist:
golangci-lintdoes not output errors locally