Skip to content

Commit

Permalink
relax types (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdngo authored Apr 20, 2023
1 parent 9543ac8 commit beab9f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions hammer/config/defaults_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ vlsi.inputs:
ilms: list[dict[str, str]]

# Multi-mode multi-corner setups, overrides supplies
mmmc_corners: list[dict[str, str]]
mmmc_corners: list[dict[str, Any]]

# Clock ports of the top-level module.
clocks: list[dict[str, str]]
clocks: list[dict[str, Any]]

# Default output pin load capacitance.
default_output_load: int
Expand All @@ -120,7 +120,7 @@ vlsi.inputs:
output_loads: list[dict[str, str]]

# List of delay constraints.
delays: list[dict[str, str]]
delays: list[dict[str, Any]]

# List of custom sdc constraints to use. (List[str])
custom_sdc_constraints: list[str]
Expand Down Expand Up @@ -161,7 +161,7 @@ vlsi.inputs:
# cell (str) - Name of the default bump cell
cell: str
# assignments - List of BumpAssignment structs. You must specify one of name or no_connect.
assignments: list[dict[str, str]]
assignments: list[dict[str, Any]]

# Naming scheme for the bumps' actual physical pin designators
# type: str
Expand All @@ -174,10 +174,10 @@ vlsi.inputs:
generate_mode: str

# List of PinAssignment Structs.
assignments: list[dict[str, str]]
assignments: list[dict[str, Any]]

# List of decap constraints (DecapConstraint struct).
decaps: list[dict[str, str]]
decaps: list[dict[str, Any]]

# SVG visualization of placement constraints and bumps for the current hierarchical module.
visualization:
Expand Down

0 comments on commit beab9f7

Please sign in to comment.