You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crypto-benchmarks.rs/demo/README.md
+20-22Lines changed: 20 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,24 +6,14 @@ This folder contains scripts that orchestrate end-to-end demonstrations of BLS-b
6
6
7
7
## Prerequisites
8
8
9
-
- Build the CLI once from the repository root:
10
-
11
-
```bash
12
-
cargo build --release -p crypto-benchmarks
13
-
```
14
-
15
-
The resulting binary will be at:
16
-
```
17
-
target/release/leios_crypto_benchmarks
18
-
```
19
-
20
-
- Ensure Python 3 is available with `cbor2` and `matplotlib` installed.
9
+
- Ensure the CLI built from the repository root is available; see `crypto-benchmarks.rs/ReadMe.md` for build instructions and usage details.
10
+
- Ensure Python 3 is available with `cbor2` installed.
21
11
For example:
22
12
23
13
```bash
24
14
python3 -m venv .venv
25
15
source .venv/bin/activate
26
-
pip install cbor2 matplotlib
16
+
pip install cbor2
27
17
```
28
18
29
19
## Workflow
@@ -32,54 +22,52 @@ The scripts are designed to be run from the `demo/` directory.
32
22
33
23
### Run Step by Step (Manual Mode)
34
24
35
-
You can run each script individually to understand and control each step of the process for a given number of voters (e.g., 32). Use the `-d` option to specify the output directory (e.g., `run32`).
36
-
37
-
RUN=run100
25
+
You can run each script individually to understand and control each step of the process for a given number of voters (e.g., 100). Use the `-d` option to specify the output directory (e.g., `run100`).
0 commit comments