Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from zama-ai/bump/tfhe-rs
Browse files Browse the repository at this point in the history
build(tfhe-rs): update to new version of tfhe-rs that handles new PK …
  • Loading branch information
leventdem authored Jun 23, 2023
2 parents 5e22804 + 34f4ff8 commit 5210402
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zbc-fhe-tool"
version = "0.1.0"
version = "0.1.1"
authors = ["Zama <[email protected]>"]
edition = "2021"
license = "Unlicense"
Expand All @@ -12,4 +12,4 @@ publish = false
bincode = "1.3.3"
clap = { version = "3.1.18", features = ["derive"] }
serde = "1.0"
tfhe = { git = "https://github.com/zama-ai/tfhe-rs.git", rev = "1d817c45d5234bcf33638406191b656998b30c2a", features = ["boolean", "experimental-force_fft_algo_dif4", "shortint", "integer"] }
tfhe = { git = "https://github.com/zama-ai/tfhe-rs.git", rev = "0.3.0-beta.0", features = ["boolean", "experimental-force_fft_algo_dif4", "shortint", "integer"] }
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ This tool could be used locally or through a docker image.

# Quick start

If you want to generate Fhe keys for your evmos node:
If you want to generate fhe keys for your evmos node:

On x86:
```bash
$> mkdir -p res && docker run -v $PWD:/usr/local/app ghcr.io/zama-ai/zbc-fhe-tool:v0.1.0 zbc-fhe-tool generate-keys -d res
$> mkdir -p res && docker run -v $PWD:/usr/local/app ghcr.io/zama-ai/zbc-fhe-tool:v0.1.1 zbc-fhe-tool generate-keys -d res
```

On arm64:
```bash
$> mkdir -p res && docker run -v $PWD:/usr/local/app ghcr.io/zama-ai/zbc-fhe-tool:v0.1.0-arm64 zbc-fhe-tool generate-keys -d res
$> mkdir -p res && docker run -v $PWD:/usr/local/app ghcr.io/zama-ai/zbc-fhe-tool:v0.1.1-arm64 zbc-fhe-tool generate-keys -d res
```

Typical output:
Expand Down

0 comments on commit 5210402

Please sign in to comment.