Skip to content

Commit

Permalink
chore(backend): fix nightly feature which was not forwarded to TFHE-rs
Browse files Browse the repository at this point in the history
- this will allow to have AVX512 on x86 machines which have the hardware
feature available if concrete-cpu is built with a rust nightly toolchain
and the nightly feature enabled
  • Loading branch information
IceTDrinker committed Jan 3, 2024
1 parent f58c039 commit 5833b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/concrete-cpu/implementation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ std = [
]
csprng = ["concrete-csprng"]
parallel = ["rayon"]
nightly = ["pulp/nightly", "concrete-fft/nightly"]
nightly = ["pulp/nightly", "concrete-fft/nightly", "tfhe/nightly-avx512"]

[build-dependencies]
cbindgen = "0.24"
Expand Down

1 comment on commit 5833b23

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 5833b23 Previous: 6f78608 Ratio
v0 PBS table generation 62640093 ns/iter (± 721276) 59899817 ns/iter (± 1062102) 1.05
v0 PBS simulate dag table generation 39776910 ns/iter (± 2002790) 40644637 ns/iter (± 241557) 0.98
v0 WoP-PBS table generation 105096566 ns/iter (± 1858861) 102927000 ns/iter (± 2392461) 1.02

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.