Skip to content

Commit 902b1ea

Browse files
author
mohdsaid497566
committed
re-run with lint/format
1 parent efa85fb commit 902b1ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

toolchain/mfc/test/case.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __init__(self, trace: str, mods: dict, ppn: int = None, override_tol: float
124124
self.override_tol = override_tol
125125
super().__init__({**BASE_CFG.copy(), **mods})
126126

127-
def run(self, targets: List[Union[str, MFCTarget]], gpus: Set[int], rdma_mpi: bool = False) -> subprocess.CompletedProcess:
127+
def run(self, targets: List[Union[str, MFCTarget]], gpus: Set[int]) -> subprocess.CompletedProcess:
128128
if gpus is not None and len(gpus) != 0:
129129
gpus_select = ["--gpus"] + [str(_) for _ in gpus]
130130
else:
@@ -146,7 +146,7 @@ def run(self, targets: List[Union[str, MFCTarget]], gpus: Set[int], rdma_mpi: bo
146146
mfc_script, "run", filepath, "--no-build", *tasks, *case_optimization,
147147
*jobs, "-t", *target_names, *gpus_select, *ARG("--")
148148
]
149-
149+
150150
return common.system(command, print_cmd=False, text=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
151151

152152
def get_trace(self) -> str:

0 commit comments

Comments
 (0)