-
Notifications
You must be signed in to change notification settings - Fork 27
compact_distributions
Nicolai Mueller edited this page Sep 6, 2024
·
5 revisions
Boolean
false
Specifies whether PROLEAD evaluates a design in normal mode or compact mode.
- Normal Mode: All observations made by the adversary are fully stored in the contingency tables.
- Compact Mode: Only the Hamming weight of the observations is stored, resulting in a more concise table.
- Normal Mode: Provides highly accurate results but can lead to rapid growth of the contingency table and increased memory (RAM) usage.
- Compact Mode: Reduces memory usage by storing less detailed data, which means that leakages can be overseen compared to normal mode.
"performance": {
"compact_distributions": false
}
This configuration uses normal mode.
"performance": {
"compact_distributions": true
}
This configuration uses compact mode.