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

update pilout #111

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all 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
19 changes: 1 addition & 18 deletions pilout/src/pilout.proto
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,6 @@ message Air {
repeated Constraint constraints = 7;
repeated AirValue airValues = 8; // stage airvalues
bool aggregable = 9;
repeated CustomCommit customCommits = 10;
}

message CustomCommit {
optional string name = 1;
repeated GlobalOperand.PublicValue publicValues = 2;
repeated uint32 stageWidths = 3; // stage widths including stage 0 !!
}

message AirValue {
Expand Down Expand Up @@ -223,13 +216,6 @@ message Operand {
sint32 rowOffset = 3;
}

message CustomCol {
uint32 commitId = 1;
uint32 stage = 2;
uint32 colIdx = 3; // absolute idx relative to the stage
sint32 rowOffset = 4;
}

message Expression {
uint32 idx = 1;
}
Expand All @@ -245,7 +231,6 @@ message Operand {
WitnessCol witnessCol = 8;
Expression expression = 9;
AirValue airValue = 10;
CustomCol customCol = 11;
}
}

Expand Down Expand Up @@ -290,7 +275,6 @@ enum SymbolType {
PUBLIC_TABLE = 7;
CHALLENGE = 8;
AIR_VALUE = 9;
CUSTOM_COL = 10;
}

message Symbol {
Expand All @@ -302,8 +286,7 @@ message Symbol {
optional uint32 stage = 6;
uint32 dim = 7;
repeated uint32 lengths = 8;
optional uint32 commitId = 9;
optional string debugLine = 10;
optional string debugLine = 9;
}

// ================ Hints ================
Expand Down
Loading