Report power

This commit is contained in:
Byron Lathi
2025-01-26 22:52:23 -08:00
parent 5855708c57
commit 00b5d76401
2 changed files with 2 additions and 1 deletions

View File

@@ -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.3.2" # REQUIRED, although can be dynamic
version = "0.3.3" # 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:

View File

@@ -50,6 +50,7 @@ def build_nonprj(cfg):
f.write(f"write_checkpoint -force $outputDir/post_route.dcp\n")
f.write(f"report_utilization -file $outputDir/post_impl_util.rpt\n")
f.write(f"report_timing -file $outputDir/timing.rpt\n")
f.write(f"report_power -file $outputDir/power.rpt\n")
f.write(f"write_bitstream -force $outputDir/{top}.bit\n")
f.write(f"exit\n")