| 21 | const NUM_BITS_PER_FIELD_ELEM: usize = 254; |
| 22 | |
| 23 | pub struct PackerConfig<F: PrimeField> { |
| 24 | pub num_bits_per_elem: usize, |
| 25 | pub num_elem_per_packed: usize, |
| 26 | pub num_packed_per_row: usize, |
| 27 | pub exponents: Vec<F>, |
| 28 | _marker: PhantomData<F>, |
| 29 | } |
| 30 | |
| 31 | pub struct PackerChip<F: PrimeField> { |
| 32 | pub config: PackerConfig<F>, |
nothing calls this directly
no outgoing calls
no test coverage detected