-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: modified the CI to run the examples with the
blitzer
feat…
…ure disabled and updated the `ReadMe.md` (#259) # Rationale Our example code leverages the `InnerProductProof` commitment scheme. While this is still valid, it is more difficult as an entry point to the code because it requires Linux (and GPU by default). # What changes are included in this PR? Updated the documents and disabled the `blitzer` feature in the CI # Are these changes tested? yes --------- Signed-off-by: Abinand P <[email protected]>
- Loading branch information
1 parent
d79cbbf
commit cbf5078
Showing
5 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
cd crates/proof-of-sql/examples/posql_db | ||
cargo run --features="arrow " --example posql_db create -t sxt.table -c a,b -d BIGINT,VARCHAR | ||
cargo run --features="arrow " --example posql_db append -t sxt.table -f hello_world.csv | ||
cargo run --features="arrow " --example posql_db prove -q "SELECT b FROM sxt.table WHERE a = 2" -f hello.proof | ||
cargo run --features="arrow " --example posql_db verify -q "SELECT b FROM sxt.table WHERE a = 2" -f hello.proof | ||
cargo run --features="arrow" "$@" --example posql_db create -t sxt.table -c a,b -d BIGINT,VARCHAR | ||
cargo run --features="arrow" "$@" --example posql_db append -t sxt.table -f hello_world.csv | ||
cargo run --features="arrow" "$@" --example posql_db prove -q "SELECT b FROM sxt.table WHERE a = 2" -f hello.proof | ||
cargo run --features="arrow" "$@" --example posql_db verify -q "SELECT b FROM sxt.table WHERE a = 2" -f hello.proof |