fix(hpu): Prevent lfs objects to be pulled by default

Should be the default behavior, but not working as expected initially
This commit is contained in:
Baptiste Roux
2025-04-24 19:36:08 +02:00
parent 74b4c653cb
commit 284768a444
2 changed files with 9 additions and 0 deletions

2
.lfsconfig Normal file
View File

@@ -0,0 +1,2 @@
[lfs]
fetchexclude = *

View File

@@ -199,6 +199,13 @@ There are some example applications already available in `tfhe/examples/hpu`:
* hpu_bench: Depict the used of HPU device through Integer abstraction level.
In order to run those applications on hardware, user must build from the project root (i.e `tfhe-rs-internal`) with `hpu-v80` features:
> NB: Running examples required to have correctly pulled the `.pdi` files. Those files, due to their size, are backed by git-lfs and disabled by default.
> In order to retrieve them, use the following command:
> ```bash
> git lfs pull --include="*" --exclude=""
> ```
``` bash
cargo build --release --features="hpu-v80" --example hpu_hlapi --example hpu_bench
# Correctly setup environment with setup_hpu.sh script