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
refactor: move existing benchmarks to new proof-of-sql-benches crate (#767)
# Rationale for this change
The benchmarks need to use the `proof-of-sql-parser`. In order to do
that we need to move the existing benchmarks to a new crate,
`proof-of-sql-benches`. This PR simply moves the existing benchmarks to
the new crate without any functionality changes or improvements.
Additionally, the new create is excluded from the test code coverage
report since it is not intended to
be used in production code.
# What changes are included in this PR?
- The benchmarks in `proof-of-sql/benches` are moved to
`proof-of-sql-benches` without any functionally changes or improvements.
- The new `proof-of-sql-benches` crate is excluded from the code
coverage check in commit
b20d59f
# Are these changes tested?
Yes
Copy file name to clipboardExpand all lines: crates/proof-of-sql-benches/src/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -10,22 +10,22 @@ The Jaeger benchmarks/tracing is wrapped by a binary. The motivation of the wrap
10
10
```
11
11
2. See all the options to run a benchmark.
12
12
```bash
13
-
cargo run --release --bin jaeger_benches --features="bench" -- --help
13
+
cargo run --release --bin proof-of-sql-benches -- --help
14
14
```
15
15
3. Navigate to http://localhost:16686/ to see the results.
16
16
4. To end the Jaeger service, run
17
17
```bash
18
18
docker kill jaeger
19
19
```
20
20
21
-
All the options are outlined in the help and `jaeger_benches.rs` module.
21
+
All the options are outlined in the help and `main.rs` module.
22
22
23
23
### Example
24
24
25
25
To run a benchmark on the `HyperKZG` commitment scheme using the `Single Column Filter` query with a table size of `1_000_000`for`3` iterations, your command would be the following.
0 commit comments