Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

relax types #780

Merged
merged 1 commit into from
Apr 20, 2023
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
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