Compose a list of LogicalCores present on the remote node. If use_first_core is False, the first physical core won't be used.
(self, use_first_core: bool)
| 214 | |
| 215 | @abstractmethod |
| 216 | def get_remote_cpus(self, use_first_core: bool) -> list[LogicalCore]: |
| 217 | """ |
| 218 | Compose a list of LogicalCores present on the remote node. |
| 219 | If use_first_core is False, the first physical core won't be used. |
| 220 | """ |
| 221 | |
| 222 | @abstractmethod |
| 223 | def kill_cleanup_dpdk_apps(self, dpdk_prefix_list: Iterable[str]) -> None: |