-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename: (coprocessor,leaf) -> (component,shard)
- Loading branch information
1 parent
17d297b
commit 5500e46
Showing
15 changed files
with
129 additions
and
113 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...evm/src/keccak/coprocessor/circuit/mod.rs → ...zkevm/src/keccak/component/circuit/mod.rs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub mod leaf; | ||
pub mod shard; | ||
#[cfg(test)] | ||
mod tests; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod shard; |
This file contains 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
This file contains 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
This file contains 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
8 changes: 4 additions & 4 deletions
8
hashes/zkevm/src/keccak/coprocessor/mod.rs → hashes/zkevm/src/keccak/component/mod.rs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/// Module of Keccak coprocessor circuit. | ||
/// Module of Keccak component circuit(s). | ||
pub mod circuit; | ||
/// Module of encoding raw inputs to coprocessor circuit lookup keys. | ||
/// Module of encoding raw inputs to component circuit lookup keys. | ||
pub mod encode; | ||
/// Module for Rust native processing of input bytes into resized fixed length format to match vanilla circuit LoadedKeccakF | ||
pub mod ingestion; | ||
/// Module of Keccak coprocessor circuit output. | ||
/// Module of Keccak component circuit output. | ||
pub mod output; | ||
/// Module of Keccak coprocessor circuit constant parameters. | ||
/// Module of Keccak component circuit constant parameters. | ||
pub mod param; | ||
#[cfg(test)] | ||
mod tests; |
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...vm/src/keccak/coprocessor/tests/output.rs → ...kevm/src/keccak/component/tests/output.rs
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/// Module for coprocessor circuits. | ||
pub mod coprocessor; | ||
/// Module for component circuits. | ||
pub mod component; | ||
/// Module for Keccak circuits in vanilla halo2. | ||
pub mod vanilla; |