Scan CPUs in the remote OS and store a list of LogicalCores.
(self)
| 195 | ).filter() |
| 196 | |
| 197 | def _get_remote_cpus(self) -> None: |
| 198 | """ |
| 199 | Scan CPUs in the remote OS and store a list of LogicalCores. |
| 200 | """ |
| 201 | self._logger.info("Getting CPU information.") |
| 202 | self.lcores = self.main_session.get_remote_cpus(self.config.use_first_core) |
| 203 | |
| 204 | def _setup_hugepages(self): |
| 205 | """ |
no test coverage detected