Skip to content

Commit

Permalink
Include Odb.ApplyDEFTemplate in Classic flow (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
kareefardi committed Aug 17, 2023
1 parent f9b82e1 commit 08c0688
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# 2.0.0-b6

* Added `Odb.ApplyDEFTemplate` to `Classic` Flow
* Added `RUN_TAP_DECAP_INSERTION` as a deprecated name for `RUN_TAP_ENDCAP_INSERTION`

# 2.0.0-b5

* Added `refg::` to documentation
* Fixed issue where "worst clock skew" metrics were aggregated incorrectly
* Fixed issue with referencing files outside the design directory


# 2.0.0-b4

* Updated documentation for `run_subprocess`
Expand Down
2 changes: 1 addition & 1 deletion openlane/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2.0.0b5"
__version__ = "2.0.0b6"

if __name__ == "__main__":
print(__version__, end="")
1 change: 1 addition & 0 deletions openlane/flows/classic.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class Classic(SequentialFlow):
OpenROAD.TapEndcapInsertion,
OpenROAD.IOPlacement,
Odb.CustomIOPlacement,
Odb.ApplyDEFTemplate,
OpenROAD.GeneratePDN,
OpenROAD.GlobalPlacement,
OpenROAD.STAMidPNR,
Expand Down
2 changes: 1 addition & 1 deletion openlane/steps/openroad.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ class TapEndcapInsertion(OpenROADStep):
bool,
"Enables/disables this step.",
default=True,
deprecated_names=["TAP_DECAP_INSERTION"],
deprecated_names=["TAP_DECAP_INSERTION", "RUN_TAP_DECAP_INSERTION"],
),
Variable(
"FP_TAP_HORIZONTAL_HALO",
Expand Down

0 comments on commit 08c0688

Please sign in to comment.