Skip to content

Commit

Permalink
Ivs config runset (#778)
Browse files Browse the repository at this point in the history
* lvs config_runset key

* config runset input to icv

* config_runset --> runset_config

* config_runset --> runset_config lvs
  • Loading branch information
rezaasjd authored Apr 18, 2023
1 parent 71e0f71 commit dc5dbc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hammer/drc/icv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def generate_drc_args_file(self) -> bool:
# Config runset file
config_rs = self.get_setting("drc.icv.config_runset") # type: Optional[str]
if config_rs is not None:
f.write(" -config_runset" + config_rs)
f.write(" -runset_config " + config_rs)
return True

@property
Expand Down
2 changes: 1 addition & 1 deletion hammer/lvs/icv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def generate_lvs_args_file(self) -> bool:
# Config runset file
config_rs = self.get_setting("lvs.icv.config_runset") # type: Optional[str]
if config_rs is not None:
f.write(" -config_runset" + config_rs)
f.write(" -runset_config " + config_rs)
return True

@property
Expand Down

0 comments on commit dc5dbc8

Please sign in to comment.