Skip to content

Commit 69a3389

Browse files
committed
Synced finn-hlslib version to dev, removed dataset_loading from pip install
1 parent 3aa17df commit 69a3389

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

external_dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ git_deps:
2121
install_editable: False
2222
finn-hlslib:
2323
url: "https://github.com/Xilinx/finn-hlslib.git"
24-
commit: "5c5ad631e3602a8dd5bd3399a016477a407d6ee7"
24+
commit: "5dde96382b84979c6caa6f34cdad2ac72fa28489"
2525
pip_install: False
2626
install_editable: False
2727
attention-hlslib:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ finn = "finn.interface.run_finn:main"
4242
python = ">=3.10,<3.12"
4343
pybind11 = "3.0.1" # pybind11==3.0.1 already for FIFO sim rework, after rework remove module load
4444
bitstring = "~4.3.1"
45-
dataset_loading = { git = "https://github.com/fbcotter/dataset_loading.git", rev = "5b9faa226e5f7c857579d31cdd9acde8cdfb816f" }
4645
numpy = "1.26.4" # numpy<=1.24.4 required by brevitas
4746
# Cannot upgrade onnx and onnxruntime any further. For now this seems to be the
4847
# last compatible pair which is also consistent with qonnx.

src/finn/transformation/fpgadataflow/instrumentation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ def apply(self, model):
9494
prjname = "project_instrwrap"
9595
ipgentcl = ipgentcl_template
9696
ipgentcl = ipgentcl.replace("$PROJECTNAME$", prjname)
97-
ipgentcl = ipgentcl.replace("$HWSRCDIR$", wrapper_output_dir)
98-
ipgentcl = ipgentcl.replace("$FINNHLSLIB$", get_settings().finn_deps / "finn-hlslib")
97+
ipgentcl = ipgentcl.replace("$HWSRCDIR$", str(wrapper_output_dir))
98+
ipgentcl = ipgentcl.replace("$FINNHLSLIB$", str(get_settings().finn_deps / "finn-hlslib"))
9999
ipgentcl = ipgentcl.replace(
100-
"$ATTENTIONHLSLIB$", get_settings().finn_deps / "attention-hlslib"
100+
"$ATTENTIONHLSLIB$", str(get_settings().finn_deps / "attention-hlslib")
101101
)
102102
ipgentcl = ipgentcl.replace("$TOPFXN$", "instrumentation_wrapper")
103103
ipgentcl = ipgentcl.replace("$FPGAPART$", self.fpga_part)

0 commit comments

Comments
 (0)