Starts monitoring CPU energy consumption.
(self)
| 858 | return self._cpu_details |
| 859 | |
| 860 | def start(self) -> None: |
| 861 | """ |
| 862 | Starts monitoring CPU energy consumption. |
| 863 | """ |
| 864 | for rapl_file in self._rapl_files: |
| 865 | rapl_file.start() |
| 866 | |
| 867 | |
| 868 | class TDP: |