Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed wrong assumption on number of core freq elements #145

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions perun/backend/psutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ def availableSensors(self) -> Dict[str, Tuple]:
sensors["DISK_WRITE_BYTES"] = (self.id, DeviceType.DISK, Unit.BYTE)

if psutil.cpu_freq(percpu=True) is not None:
for i in range(psutil.cpu_count()):
if psutil.cpu_freq(percpu=True)[i].current is not None:
sensors[f"CPU_FREQ_{i}"] = (self.id, DeviceType.CPU, Unit.HZ)
for cpu_id, _ in enumerate(psutil.cpu_freq(percpu=True)):
sensors[f"CPU_FREQ_{cpu_id}"] = (self.id, DeviceType.CPU, Unit.HZ)
return sensors

def _getCallback(self, device: str) -> Callable[[], np.number]:
Expand Down