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

feat(sol): add shplemini transcript #8865

Merged
merged 6 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions barretenberg/sol/src/honk/HonkTypes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,9 @@ library Honk {
// Sumcheck
Fr[BATCHED_RELATION_PARTIAL_LENGTH][CONST_PROOF_SIZE_LOG_N] sumcheckUnivariates;
Fr[NUMBER_OF_ENTITIES] sumcheckEvaluations;
// Gemini
Honk.G1ProofPoint[CONST_PROOF_SIZE_LOG_N] geminiFoldUnivariates;
Copy link
Contributor

Choose a reason for hiding this comment

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

you could name these geminiFoldComms and geminiFoldEvals (or exclude gemini from the name altogether)

Copy link
Contributor

Choose a reason for hiding this comment

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

also the commitments should be CONST_PROOF_SIZE_LOG_N - 1

Copy link
Member Author

Choose a reason for hiding this comment

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

good catch

Fr[CONST_PROOF_SIZE_LOG_N] geminiAEvaluations;
Honk.G1ProofPoint shplonkQ;
}
}
132 changes: 116 additions & 16 deletions barretenberg/sol/src/honk/Transcript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ struct Transcript {
Fr[NUMBER_OF_ALPHAS] alphas;
Fr[CONST_PROOF_SIZE_LOG_N] gateChallenges;
Fr[CONST_PROOF_SIZE_LOG_N] sumCheckUChallenges;
// Fr rho;
// Gemini
Fr rho;
Fr geminiR;
Fr shplonkNu;
Fr shplonkZ;
// Derived
Fr publicInputsDelta;
}
Expand All @@ -40,7 +44,14 @@ library TranscriptLib {
(t.gateChallenges, previousChallenge) = generateGateChallenges(previousChallenge);

(t.sumCheckUChallenges, previousChallenge) = generateSumcheckChallenges(proof, previousChallenge);
// (t.rho, previousChallenge) = generateRhoChallenge(proof, previousChallenge);

(t.rho, previousChallenge) = generateRhoChallenge(proof, previousChallenge);

(t.geminiR, previousChallenge) = generateGeminiRChallenge(proof, previousChallenge);

(t.shplonkNu, previousChallenge) = generateShplonkNuChallenge(proof, previousChallenge);

(t.shplonkZ, previousChallenge) = generateShplonkZChallenge(proof, previousChallenge);

return t;
}
Expand All @@ -55,7 +66,7 @@ library TranscriptLib {

function generateEtaChallenge(Honk.Proof memory proof, bytes32[] calldata publicInputs, uint256 publicInputsSize)
internal
view
pure
returns (Fr eta, Fr etaTwo, Fr etaThree, Fr previousChallenge)
{
bytes32[] memory round0 = new bytes32[](3 + publicInputsSize + 12);
Expand Down Expand Up @@ -90,7 +101,7 @@ library TranscriptLib {

function generateBetaAndGammaChallenges(Fr previousChallenge, Honk.Proof memory proof)
internal
view
pure
returns (Fr beta, Fr gamma, Fr nextPreviousChallenge)
{
bytes32[13] memory round1;
Expand All @@ -115,7 +126,7 @@ library TranscriptLib {
// Alpha challenges non-linearise the gate contributions
function generateAlphaChallenges(Fr previousChallenge, Honk.Proof memory proof)
internal
view
pure
returns (Fr[NUMBER_OF_ALPHAS] memory alphas, Fr nextPreviousChallenge)
{
// Generate the original sumcheck alpha 0 by hashing zPerm and zLookup
Expand Down Expand Up @@ -146,7 +157,7 @@ library TranscriptLib {

function generateGateChallenges(Fr previousChallenge)
internal
view
pure
returns (Fr[CONST_PROOF_SIZE_LOG_N] memory gateChallenges, Fr nextPreviousChallenge)
{
for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N; i++) {
Expand All @@ -159,7 +170,7 @@ library TranscriptLib {

function generateSumcheckChallenges(Honk.Proof memory proof, Fr prevChallenge)
internal
view
pure
returns (Fr[CONST_PROOF_SIZE_LOG_N] memory sumcheckChallenges, Fr nextPreviousChallenge)
{
for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N; i++) {
Expand All @@ -177,10 +188,9 @@ library TranscriptLib {
nextPreviousChallenge = prevChallenge;
}

// TODO: reuse this for Shplemini
function generateRhoChallenge(Honk.Proof memory proof, Fr prevChallenge)
internal
view
pure
returns (Fr rho, Fr nextPreviousChallenge)
{
Fr[NUMBER_OF_ENTITIES + 1] memory rhoChallengeElements;
Expand All @@ -196,11 +206,66 @@ library TranscriptLib {
(rho, unused) = splitChallenge(nextPreviousChallenge);
}

function generateGeminiRChallenge(Honk.Proof memory proof, Fr prevChallenge)
internal
pure
returns (Fr geminiR, Fr nextPreviousChallenge)
{
uint256[(CONST_PROOF_SIZE_LOG_N - 1) * 4 + 1] memory gR;
Copy link
Contributor

Choose a reason for hiding this comment

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

why is there a +1?

Copy link
Member Author

Choose a reason for hiding this comment

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

For the previous challenge

gR[0] = Fr.unwrap(prevChallenge);

for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N - 1; i++) {
gR[1 + i * 4] = proof.geminiFoldUnivariates[i].x_0;
gR[2 + i * 4] = proof.geminiFoldUnivariates[i].x_1;
gR[3 + i * 4] = proof.geminiFoldUnivariates[i].y_0;
gR[4 + i * 4] = proof.geminiFoldUnivariates[i].y_1;
}

nextPreviousChallenge = FrLib.fromBytes32(keccak256(abi.encodePacked(gR)));
Fr unused;
(geminiR, unused) = splitChallenge(nextPreviousChallenge);
}

function generateShplonkNuChallenge(Honk.Proof memory proof, Fr prevChallenge)
internal
pure
returns (Fr shplonkNu, Fr nextPreviousChallenge)
{
uint256[(CONST_PROOF_SIZE_LOG_N) + 1] memory shplonkNuChallengeElements;
shplonkNuChallengeElements[0] = Fr.unwrap(prevChallenge);

for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N; i++) {
shplonkNuChallengeElements[i + 1] = Fr.unwrap(proof.geminiAEvaluations[i]);
}

nextPreviousChallenge = FrLib.fromBytes32(keccak256(abi.encodePacked(shplonkNuChallengeElements)));
Fr unused;
(shplonkNu, unused) = splitChallenge(nextPreviousChallenge);
}

function generateShplonkZChallenge(Honk.Proof memory proof, Fr prevChallenge)
internal
pure
returns (Fr shplonkZ, Fr nextPreviousChallenge)
{
uint256[5] memory shplonkZChallengeElements;
shplonkZChallengeElements[0] = Fr.unwrap(prevChallenge);

shplonkZChallengeElements[1] = proof.shplonkQ.x_0;
shplonkZChallengeElements[2] = proof.shplonkQ.x_1;
shplonkZChallengeElements[3] = proof.shplonkQ.y_0;
shplonkZChallengeElements[4] = proof.shplonkQ.y_1;

nextPreviousChallenge = FrLib.fromBytes32(keccak256(abi.encodePacked(shplonkZChallengeElements)));
Fr unused;
(shplonkZ, unused) = splitChallenge(nextPreviousChallenge);
}

// TODO: mod q proof points
// TODO: Preprocess all of the memory locations
// TODO: Adjust proof point serde away from poseidon forced field elements
// TODO: move this back to probably each instance to avoid dynamic init of arrays in the Transcript Lib
function loadProof(bytes calldata proof) internal view returns (Honk.Proof memory) {
function loadProof(bytes calldata proof) internal pure returns (Honk.Proof memory) {
Honk.Proof memory p;

// Metadata
Expand Down Expand Up @@ -287,12 +352,47 @@ library TranscriptLib {
}

boundary = boundary + (NUMBER_OF_ENTITIES * 0x20);
// p.zmPi = Honk.G1ProofPoint({
// x_0: uint256(bytes32(proof[boundary + 0x80:boundary + 0xa0])),
// x_1: uint256(bytes32(proof[boundary + 0xa0:boundary + 0xc0])),
// y_0: uint256(bytes32(proof[boundary + 0xc0:boundary + 0xe0])),
// y_1: uint256(bytes32(proof[boundary + 0xe0:boundary + 0x100]))
// });

// Gemini
// Read gemini fold univariates
for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N - 1; i++) {
uint256 xStart = boundary + (i * 0x80);
uint256 xEnd = xStart + 0x20;

uint256 x1Start = xEnd;
uint256 x1End = x1Start + 0x20;

uint256 yStart = x1End;
uint256 yEnd = yStart + 0x20;

uint256 y1Start = yEnd;
uint256 y1End = y1Start + 0x20;
p.geminiFoldUnivariates[i] = Honk.G1ProofPoint({
x_0: uint256(bytes32(proof[xStart:xEnd])),
x_1: uint256(bytes32(proof[x1Start:x1End])),
y_0: uint256(bytes32(proof[yStart:yEnd])),
y_1: uint256(bytes32(proof[y1Start:y1End]))
});
}

boundary = boundary + ((CONST_PROOF_SIZE_LOG_N - 1) * 0x80);

// Read gemini a evaluations
for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N; i++) {
uint256 start = boundary + (i * 0x20);
uint256 end = start + 0x20;
p.geminiAEvaluations[i] = FrLib.fromBytes32(bytes32(proof[start:end]));
}

boundary = boundary + (CONST_PROOF_SIZE_LOG_N * 0x20);

// Shplonk
p.shplonkQ = Honk.G1ProofPoint({
x_0: uint256(bytes32(proof[boundary:boundary + 0x20])),
x_1: uint256(bytes32(proof[boundary + 0x20:boundary + 0x40])),
y_0: uint256(bytes32(proof[boundary + 0x40:boundary + 0x60])),
y_1: uint256(bytes32(proof[boundary + 0x60:boundary + 0x80]))
});

return p;
}
Expand Down
5 changes: 5 additions & 0 deletions barretenberg/sol/src/honk/utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ function logUint(string memory name, uint256 value) pure {
console2.log(name, as_hex);
}

function logUint(string memory name, uint256 i, uint256 value) pure {
string memory as_hex = bytes32ToString(bytes32(value));
console2.log(name, i, as_hex);
}

function logFr(string memory name, Fr value) pure {
string memory as_hex = bytes32ToString(bytes32(Fr.unwrap(value)));
console2.log(name, as_hex);
Expand Down
Loading