(self)
| 152 | """ |
| 153 | |
| 154 | def registrations(self): |
| 155 | output = self._format_header("Registered Kernels") |
| 156 | state = self.rawRegistrations() |
| 157 | state_entries = state.split("\n") |
| 158 | for line in state_entries: |
| 159 | first = line.split(":")[0] |
| 160 | if any(first.startswith(k) for k in self.supported_keys): |
| 161 | kernel = line.split("::")[0].split(" ")[1] |
| 162 | output += self._format_line(first, kernel) |
| 163 | return output |
| 164 | |
| 165 | """ |
| 166 | Returns the computed dispatch table(str). Note this only include |