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

error handling and submit_command refactoring (with tests for synthesis) #527

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
45 changes: 45 additions & 0 deletions src/hammer-tech/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,28 @@ def paths_func(lib: "Library") -> List[str]:
return LibraryFilter.new("timing_lib", "CCS/NLDM timing lib (ASCII .lib)",
paths_func=paths_func, is_file=True)

def timing_lib_nldm_filter(self, vts: Optional[List[str]] = None) -> LibraryFilter:
"""
Select ASCII .lib timing libraries. Only chooses NLDM. Only use this
for pipe-cleaning/exploration. Additionally, specify which vts you
would like to filter for as well (for extra speedup)
"""
def paths_func(lib: "Library") -> List[str]:
if len(vts) > 0:
has_vt = False
for vt in vts:
for provided in lib.provides:
has_vt = has_vt or (provided.vt == vt)
if not(has_vt):
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
if not(has_vt):
if not has_vt:

return []
if lib.nldm_liberty_file is not None:
return [lib.nldm_liberty_file]
return []

return LibraryFilter.new("timing_lib_nldm",
"NLDM timing lib (liberty ASCII .lib)",
paths_func=paths_func, is_file=True)

@property
def timing_lib_with_ecsm_filter(self) -> LibraryFilter:
"""
Expand Down Expand Up @@ -167,6 +189,29 @@ def sort_func(lib: "Library"):
return LibraryFilter.new("lef", "LEF physical design layout library", is_file=True, filter_func=filter_func,
paths_func=paths_func, sort_func=sort_func)

@property
def tech_lef_filter(self) -> LibraryFilter:
"""
Select tech-LEF files for physical layout.
"""

def filter_func(lib: "Library") -> bool:
return (lib.lef_file is not None) and \
(lib.provides is not None) and \
(len(list(filter(lambda p: p.lib_type == "technology",
lib.provides))) > 0)

def paths_func(lib: "Library") -> List[str]:
assert lib.lef_file is not None
return [lib.lef_file]

def sort_func(lib: "Library"):
return 0

return LibraryFilter.new("lef", "LEF physical design layout library",
is_file=True, filter_func=filter_func,
paths_func=paths_func, sort_func=sort_func)

@property
def verilog_sim_filter(self) -> LibraryFilter:
"""
Expand Down
Loading