| Summary: | IPMI plugin: error in math | ||
|---|---|---|---|
| Product: | Slurm | Reporter: | Thomas Cadeau <thomas.cadeau> |
| Component: | Accounting | Assignee: | Danny Auble <da> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | 3 - Medium Impact | ||
| Priority: | --- | ||
| Version: | 2.6.x | ||
| Hardware: | Linux | ||
| OS: | Linux | ||
| Site: | Atos/Eviden Sites | Slinky Site: | --- |
| Alineos Sites: | --- | Atos/Eviden Sites: | --- |
| Confidential Site: | --- | Coreweave sites: | --- |
| Cray Sites: | --- | DS9 clusters: | --- |
| Google sites: | --- | HPCnow Sites: | --- |
| HPE Sites: | --- | IBM Sites: | --- |
| NOAA SIte: | --- | NoveTech Sites: | --- |
| Nvidia HWinf-CS Sites: | --- | OCF Sites: | --- |
| Recursion Pharma Sites: | --- | SFW Sites: | --- |
| SNIC sites: | --- | Tzag Elita Sites: | --- |
| Linux Distro: | --- | Machine Name: | |
| CLE Version: | Version Fixed: | ||
| Target Release: | --- | DevPrio: | --- |
| Emory-Cloud Sites: | --- | ||
| Attachments: | patch for correct maths in IPMI plugin | ||
Good Catch! This will be in the next 2.6 (commit b950ad0f63683ae5e6afbb46e06c29528c89e406). Please check for +80 char lines. Thanks, |
Created attachment 360 [details] patch for correct maths in IPMI plugin There is a bug in the code that leads to a wrong calculation of dE(n) dE(n) = (t(n+1)-t(n)) * (w(n-1) + w(n)) / 2 instead of dE(n) = (t(n+1)-t(n)) * (w(n) + w(n+1)) / 2 the patch change this. Thomas