Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/OpenSTA
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should use OpenSTA main and have all tests passing

Submodule OpenSTA updated 55 files
+2 −1 .github/workflows/tests.yaml
+15 −0 .github/workflows/valgrind.ubuntu22.04.Dockerfile
+1 −0 CMakeLists.txt
+166 −0 include/sta/FilterExpr.hh
+66 −0 include/sta/FindObjects.hh
+3 −0 include/sta/LibertyClass.hh
+5 −0 include/sta/NetworkClass.hh
+6 −0 include/sta/Property.hh
+1 −0 include/sta/SdcClass.hh
+3 −0 include/sta/Sta.hh
+4 −0 include/sta/TclTypeHelpers.hh
+5 −0 include/sta/Variables.hh
+8 −2 liberty/Liberty.i
+136 −0 network/Network.i
+6 −2 power/Power.i
+15 −5 power/Power.tcl
+24 −3 power/VcdParse.cc
+7 −1 power/VcdParse.hh
+64 −11 power/VcdReader.cc
+4 −0 power/VcdReader.hh
+28 −160 sdc/Sdc.i
+338 −300 sdc/Sdc.tcl
+2 −1 sdc/Variables.cc
+179 −1 search/Property.cc
+12 −5 search/Search.i
+12 −0 search/Sta.cc
+110 −100 tcl/CmdArgs.tcl
+26 −5 tcl/CmdUtil.tcl
+237 −0 tcl/Collections.i
+197 −95 tcl/Collections.tcl
+8 −2 tcl/Extras.tcl
+10 −5 tcl/Property.tcl
+7 −7 tcl/Sta.tcl
+105 −93 tcl/StaTclTypes.i
+14 −0 tcl/TclTypeHelpers.cc
+8 −0 tcl/Variables.tcl
+74 −153 test/collections.ok
+61 −37 test/collections.tcl
+2 −2 test/extras.ok
+2 −2 test/generated_clock.tcl
+8 −8 test/get_filter.ok
+1 −1 test/get_objrefs.tcl
+6 −6 test/inst_props.ok
+2 −2 test/inst_props.tcl
+14 −14 test/lib_cell_props.ok
+3 −3 test/lib_cell_props.tcl
+8 −8 test/pin_props.ok
+3 −3 test/pin_props.tcl
+306 −190 test/regression.tcl
+1 −0 test/regression_vars.tcl
+4 −4 test/slash_port_test.tcl
+60 −0 test/vcd_timestamp.ok
+70 −0 test/vcd_timestamp.tcl
+14 −0 test/vcd_timestamp.v
+26 −0 test/vcd_timestamp.vcd
Loading