Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Keccak implementations discarting benches #948

Merged
merged 7 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
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
99 changes: 0 additions & 99 deletions circuit-benchmarks/src/bit_keccak.rs

This file was deleted.

8 changes: 0 additions & 8 deletions circuit-benchmarks/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@ pub mod tx_circuit;
#[cfg(feature = "benches")]
pub mod super_circuit;

#[cfg(test)]
#[cfg(feature = "benches")]
pub mod bit_keccak;

#[cfg(test)]
#[cfg(feature = "benches")]
pub mod packed_keccak;

#[cfg(test)]
#[cfg(feature = "benches")]
pub mod packed_multi_keccak;
Expand Down
98 changes: 0 additions & 98 deletions circuit-benchmarks/src/packed_keccak.rs

This file was deleted.

7 changes: 2 additions & 5 deletions zkevm-circuits/src/keccak_circuit.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
//! The keccak circuit implementation.

/// Keccak bit
pub mod keccak_bit;
/// Keccak packed
pub mod keccak_packed;
/// Keccak packed multi
pub mod keccak_packed_multi;
/// Util
pub mod util;

pub use keccak_packed_multi::KeccakCircuitConfig as KeccakConfig;
Loading