chore(csprng)!: remove generator_x86_64_aesni feature

BREAKING_CHANGE:
- The `generator_x86_64_aesni` feature is no longer supported for tfhe-csprng
This commit is contained in:
Nicolas Sarlin
2024-12-09 14:58:07 +01:00
committed by Nicolas Sarlin
parent 3de23d14a2
commit 0f2451e3b7
11 changed files with 39 additions and 49 deletions

View File

@@ -129,10 +129,6 @@ parallel-wasm-api = ["dep:wasm-bindgen-rayon"]
nightly-avx512 = ["tfhe-fft/nightly", "tfhe-ntt/nightly", "pulp/nightly"]
# Enable the x86_64 specific accelerated implementation of the random generator for the default
# backend
generator_x86_64_aesni = ["tfhe-csprng/generator_x86_64_aesni"]
# Enable the aarch64 specific accelerated implementation of the random generator for the default
# backend
generator_aarch64_aes = ["tfhe-csprng/generator_aarch64_aes"]
@@ -145,7 +141,7 @@ __long_run_tests = []
# good/working configuration for tfhe.
# For a target_arch that does not yet have such a feature, one can still enable features manually or
# create a feature for said target_arch to make its use simpler.
x86_64 = ["generator_x86_64_aesni"]
x86_64 = []
x86_64-unix = ["x86_64"]
aarch64 = ["generator_aarch64_aes"]