Lines Matching refs:self
51 def __init__(self, has_torch: bool): argument
52 self.has_torch: bool = has_torch
53 self.csv_rtol = 1e-9
54 self.csv_comment_diff_fn = diff_csv_comment_function
55 self.csv_comment_str = '#'
57 def get_source_path(self, test: str) -> Path: argument
72 def get_run_path(self, test: str) -> Path: argument
83 def get_output_path(self, test: str, output_file: str) -> Path: argument
95 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]: argument
110 if condition == 'torch' and not self.has_torch:
113 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]: argument
133 …def check_required_failure(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Tuple[s… argument
147 def check_allowed_stdout(self, test: str) -> bool: argument