Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .linelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ignore:
- utils/tfhe-lints/**/main.stderr
- utils/tfhe-lints/**/*.json
- utils/tfhe-backward-compat-data/**/*.ron # ron files are autogenerated
- tfhe/src/core_crypto/gpu/algorithms/test/pbs128_golden/pbs128_golden_data # golden test vectors are autogenerated
- tests/corrupted_inputs_deserialization/data/proven_compact_list/**/metadata.txt

rules:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ check_fmt_toml: install_taplo

.PHONY: check_typos # Check for typos in codebase
check_typos: install_typos_checker
@git ls-files ":!*.png" ":!*.cbor" ":!*.bcode" ":!*.ico" ":!*/twiddles.cu" ":!*/fft16x4x16_twiddles.cuh" ":!*/test_cpu_gpu_fft16x4x16.cpp" ":!*/test_cpu_gpu_ifft16x4x16.cpp" ":!*.hpu" | typos --file-list - && echo "No typos found"
@git ls-files ":!*.png" ":!*.cbor" ":!*.bcode" ":!*.ico" ":!*/twiddles.cu" ":!*/fft16x4x16_twiddles.cuh" ":!*/test_cpu_gpu_fft16x4x16.cpp" ":!*/test_cpu_gpu_ifft16x4x16.cpp" ":!*.hpu" ":!*/pbs128_golden_data/*.rs" | typos --file-list - && echo "No typos found"

.PHONY: clippy_gpu # Run clippy lints on tfhe with "gpu" enabled
clippy_gpu: install_rs_check_toolchain
Expand Down
2 changes: 1 addition & 1 deletion tfhe/src/core_crypto/gpu/algorithms/test/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ mod lwe_programmable_bootstrapping_128;
mod modulus_switch;
mod noise_distribution;
mod params;
mod pbs128_golden;
mod pbs_golden;

pub struct CudaPackingKeySwitchKeys<Scalar: UnsignedInteger> {
pub lwe_sk: LweSecretKey<Vec<Scalar>>,
pub glwe_sk: GlweSecretKey<Vec<Scalar>>,
Expand Down
Loading
Loading