fix(doc): uniformized readme file names

This commit is contained in:
Nicolas Sarlin
2025-05-19 13:37:53 +02:00
committed by Nicolas Sarlin
parent a01949e630
commit 9131aaa383
6 changed files with 3 additions and 3 deletions

View File

@@ -258,4 +258,4 @@ make bench_integer_hpu
You are still waiting your FPGA board and are frustrated by lead time ? You are still waiting your FPGA board and are frustrated by lead time ?
Don't worry, you have backed-up. A dedicated simulation infrastructure with accurate performance estimation is available in tfhe-rs. Don't worry, you have backed-up. A dedicated simulation infrastructure with accurate performance estimation is available in tfhe-rs.
You can use it on any linux/MacOs to test HPU integration within tfhe-rs and optimized your application for HPU target. You can use it on any linux/MacOs to test HPU integration within tfhe-rs and optimized your application for HPU target.
Simply through an eye to [Hpu mockup](../../mockups/tfhe-hpu-mockup/Reaadme.md), and follow the instruction. Simply through an eye to [Hpu mockup](../../mockups/tfhe-hpu-mockup/README.md), and follow the instruction.

View File

@@ -23,7 +23,7 @@ const FILES_TO_IGNORE: [&str; 8] = [
"tfhe-ntt/README.md", "tfhe-ntt/README.md",
"utils/tfhe-lints/README.md", "utils/tfhe-lints/README.md",
"CONTRIBUTING.md", "CONTRIBUTING.md",
"backends/tfhe-hpu-backend/Readme.md", "backends/tfhe-hpu-backend/README.md",
]; ];
pub fn check_tfhe_docs_are_tested() -> Result<(), Error> { pub fn check_tfhe_docs_are_tested() -> Result<(), Error> {

View File

@@ -52,7 +52,7 @@ fn main() {
// Instantiate HpuDevice -------------------------------------------------- // Instantiate HpuDevice --------------------------------------------------
// HPU configuration knobs are retrieved from a TOML configuration file. Prebuilt configurations could be find in `backends/tfhe-hpu-backend/config_store` // HPU configuration knobs are retrieved from a TOML configuration file. Prebuilt configurations could be find in `backends/tfhe-hpu-backend/config_store`
// For ease of use a setup_hpu.sh script is available in repository root folder and it handle the required environment variables setup and driver initialisation // For ease of use a setup_hpu.sh script is available in repository root folder and it handle the required environment variables setup and driver initialisation
// More details are available in `backends/tfhe-hpu-backend/Readme.md` // More details are available in `backends/tfhe-hpu-backend/README.md`
let hpu_device = HpuDevice::from_config(ShellString::new("${HPU_BACKEND_DIR}/config_store/${HPU_CONFIG}/hpu_config.toml".to_string())); let hpu_device = HpuDevice::from_config(ShellString::new("${HPU_BACKEND_DIR}/config_store/${HPU_CONFIG}/hpu_config.toml".to_string()));
// Generate keys ---------------------------------------------------------- // Generate keys ----------------------------------------------------------