diff --git a/backends/tfhe-hpu-backend/Readme.md b/backends/tfhe-hpu-backend/README.md similarity index 99% rename from backends/tfhe-hpu-backend/Readme.md rename to backends/tfhe-hpu-backend/README.md index f80e2c633..2a380d7b2 100644 --- a/backends/tfhe-hpu-backend/Readme.md +++ b/backends/tfhe-hpu-backend/README.md @@ -258,4 +258,4 @@ make bench_integer_hpu 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. 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. diff --git a/backends/tfhe-hpu-backend/config_store/u55c_gf64/Readme.md b/backends/tfhe-hpu-backend/config_store/u55c_gf64/README.md similarity index 100% rename from backends/tfhe-hpu-backend/config_store/u55c_gf64/Readme.md rename to backends/tfhe-hpu-backend/config_store/u55c_gf64/README.md diff --git a/backends/tfhe-hpu-backend/config_store/v80/Readme.md b/backends/tfhe-hpu-backend/config_store/v80/README.md similarity index 100% rename from backends/tfhe-hpu-backend/config_store/v80/Readme.md rename to backends/tfhe-hpu-backend/config_store/v80/README.md diff --git a/mockups/tfhe-hpu-mockup/Readme.md b/mockups/tfhe-hpu-mockup/README.md similarity index 100% rename from mockups/tfhe-hpu-mockup/Readme.md rename to mockups/tfhe-hpu-mockup/README.md diff --git a/tasks/src/check_tfhe_docs_are_tested.rs b/tasks/src/check_tfhe_docs_are_tested.rs index e5dc56a86..b2bc9e027 100644 --- a/tasks/src/check_tfhe_docs_are_tested.rs +++ b/tasks/src/check_tfhe_docs_are_tested.rs @@ -23,7 +23,7 @@ const FILES_TO_IGNORE: [&str; 8] = [ "tfhe-ntt/README.md", "utils/tfhe-lints/README.md", "CONTRIBUTING.md", - "backends/tfhe-hpu-backend/Readme.md", + "backends/tfhe-hpu-backend/README.md", ]; pub fn check_tfhe_docs_are_tested() -> Result<(), Error> { diff --git a/tfhe/docs/configuration/hpu_acceleration/run_on_hpu.md b/tfhe/docs/configuration/hpu_acceleration/run_on_hpu.md index 40bd1e702..098231e41 100644 --- a/tfhe/docs/configuration/hpu_acceleration/run_on_hpu.md +++ b/tfhe/docs/configuration/hpu_acceleration/run_on_hpu.md @@ -52,7 +52,7 @@ fn main() { // Instantiate HpuDevice -------------------------------------------------- // 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 - // 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())); // Generate keys ----------------------------------------------------------