(self)
| 169 | """ |
| 170 | |
| 171 | def dispatchTable(self): |
| 172 | output = self._format_header("Computed Dispatch Table") |
| 173 | table = self.rawDispatchTable() |
| 174 | table_entries = table.split("\n") |
| 175 | regex = re.compile(r"registered at .*FallbackKernel\.cpp.*(\[)") |
| 176 | for line in table_entries: |
| 177 | k = line.split(":")[0] |
| 178 | if k in self.runtime_keys: |
| 179 | entry = regex.sub("[", line) |
| 180 | output += self._format_line(k, entry.split(": ")[1]) |
| 181 | return output |