Perform the execution setup that will be done for each execution this node is part of.
(self, execution_config: ExecutionConfiguration)
| 73 | self.configure_port_state(port) |
| 74 | |
| 75 | def set_up_execution(self, execution_config: ExecutionConfiguration) -> None: |
| 76 | """ |
| 77 | Perform the execution setup that will be done for each execution |
| 78 | this node is part of. |
| 79 | """ |
| 80 | self._setup_hugepages() |
| 81 | self._set_up_execution(execution_config) |
| 82 | self._execution_config = execution_config |
| 83 | for vdev in execution_config.vdevs: |
| 84 | self.virtual_devices.append(VirtualDevice(vdev)) |
| 85 | |
| 86 | def _set_up_execution(self, execution_config: ExecutionConfiguration) -> None: |
| 87 | """ |
no test coverage detected