Skip to content

Commit

Permalink
only copy reports files from openlane timing reports
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Aug 28, 2023
1 parent e0343e8 commit cb38aa0
Show file tree
Hide file tree
Showing 63 changed files with 8 additions and 646,168 deletions.
10 changes: 8 additions & 2 deletions openlane/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,14 @@ endif
@cp $(PROJECT_ROOT)/openlane/$*/runs/$*/*netgen-lvs/lvs.rpt $(PROJECT_ROOT)/signoff/$*/openlane-signoff/
@cp $(PROJECT_ROOT)/openlane/$*/runs/$*/*netgen-lvs/lvs.rpt $(PROJECT_ROOT)/signoff/$*/openlane-signoff/
@cp $(PROJECT_ROOT)/openlane/$*/runs/$*/*netgen-lvs/netgen-lvs.log $(PROJECT_ROOT)/signoff/$*/openlane-signoff/
@cp -r $(PROJECT_ROOT)/openlane/$*/runs/$*/*openroad-stapostpnr/* $(PROJECT_ROOT)/signoff/$*/openlane-signoff/timing-reports
# https://github.com/koalaman/shellcheck/wiki/SC2044
@cp -r $(PROJECT_ROOT)/openlane/$*/runs/$*/*openroad-stapostpnr/summary.rpt $(PROJECT_ROOT)/signoff/$*/openlane-signoff/timing-reports
# https://github.com/koalaman/shellcheck/wiki/SC2044
@while IFS= read -r -d '' file ; \
do \
target_dir=$(PROJECT_ROOT)/signoff/$*/openlane-signoff/timing-reports/$$(basename $$(dirname $$file)); \
mkdir -p $$target_dir; \
cp $$file $$target_dir/; \
done < <(find $(PROJECT_ROOT)/openlane/$*/runs/$*/*openroad-stapostpnr/*/*.rpt -type 'f' -print0)
@while IFS= read -r -d '' file ; \
do \
target_dir=$(PROJECT_ROOT)/signoff/$*/sdf/$$(basename $$(dirname $$file)); \
Expand Down

This file was deleted.

191 changes: 0 additions & 191 deletions signoff/user_proj_example/openlane-signoff/timing-reports/config.json

This file was deleted.

Loading

0 comments on commit cb38aa0

Please sign in to comment.