diff --git a/pyproject.toml b/pyproject.toml index 1836562..aed107f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ name = "build-fpga" # REQUIRED, is the only field that cannot be marked as dyna # https://packaging.python.org/guides/single-sourcing-package-version/ # dynamic = ["version"] -version = "0.5.0" # REQUIRED, although can be dynamic +version = "0.5.1" # REQUIRED, although can be dynamic # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: diff --git a/src/build_fpga/vivado/vivado.py b/src/build_fpga/vivado/vivado.py index 33c374a..a0bec0e 100644 --- a/src/build_fpga/vivado/vivado.py +++ b/src/build_fpga/vivado/vivado.py @@ -42,7 +42,7 @@ def build_nonprj(cfg): f.write(f"synth_ip [get_ips *]\n") f.write(f"synth_design -top {top} -directive {synth_directive}\n") f.write(f"write_checkpoint -force $outputDir/post_synth.dcp\n") - f.write(f"report_utilization -file $outputDir/post_synth_util.rpt\n") + f.write(f"report_utilization -hierarchical -file $outputDir/post_synth_util.rpt\n") if tcl_sources is not []: for tcl_script in tcl_sources: