Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
bb419baee5
!23 [sync] PR-22: 920B适配,设置风扇速率后需要sleep 2秒
From: @openeuler-sync-bot 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2024-03-09 06:49:50 +00:00
queyanwen
1e6d663ed5 mpctool:920B适配: 设置风扇转速后sleep 2秒
(cherry picked from commit 0921ae0f73e08289ba7192a2788924572d3c51e8)
2024-03-09 13:59:04 +08:00
openeuler-ci-bot
25d7edd0f2
!21 [sync] PR-16: 版本号保持1.0.1
From: @openeuler-sync-bot 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-12-04 07:27:32 +00:00
queyanwen
a78e4aebbe 版本号保持1.0.1-3
(cherry picked from commit 61fba19ab890f3d8563beaee9685903db47898ee)
2023-12-04 14:55:55 +08:00
openeuler-ci-bot
74c128c0a4
!19 [sync] PR-12: mpctool: 数据采集前判断稳态条件苛刻,且不具备防抖能力
From: @openeuler-sync-bot 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-12-04 06:54:39 +00:00
queyanwen
e5cda66500 mpctool: 能获取CPU功耗时,直接使用CPU功耗值,解决稳态判断太严格,以及抖动带来误判问题
(cherry picked from commit 020d204b1b536fb5b2a893a65945deb68d578cb4)
2023-12-04 14:35:37 +08:00
openeuler-ci-bot
d364d9657c
!11 [sync] PR-10: mpctool: 非稳态数据和寻找最低风扇速率优化,提高模型准确度
From: @openeuler-sync-bot 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-06-14 01:56:24 +00:00
queyanwen
0895528216 mpctool: 非稳态数据和寻找最低风扇速率优化,提高模型准确度
(cherry picked from commit 1e685a894db337068e576f321ff302e8731ed8a5)
2023-06-14 09:54:47 +08:00
openeuler-ci-bot
cc60477473
!9 [sync] PR-8: 【mpctool】优化数据采集过程中,系统过温或其他异常场景下的保护
From: @openeuler-sync-bot 
Reviewed-by: @jimmy-jiang-junior 
Signed-off-by: @jimmy-jiang-junior
2023-05-29 06:11:30 +00:00
queyanwen
5510ab18ec Added protection measures for overtemperature or sensor exceptions of components such as CPU and memory during data collection.
(cherry picked from commit 2188cfe588f777e2568cc78bc79d24105d0bb0a9)
2023-05-29 12:02:20 +08:00
2 changed files with 22 additions and 3 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
Name: eagle
Version: 1.0.0
Release: 1
Version: 1.0.1
Release: 4
Summary: eagle kit
License: Mulan PSL v2
URL: https://gitee.com/openeuler/eagle
@ -14,7 +14,7 @@ Source0: eagle-mpctool.tar.gz
%package -n python3-eagle-mpctool
Summary: Python3 package for python-ealge-mpctool
BuildRequires: python3-devel python3-setuptools
Requires: python3-numpy python3-pandas python3-psutil ipmitool
Requires: python3-numpy python3-pandas python3-psutil python3-scipy ipmitool
%description -n python3-eagle-mpctool
@ -36,5 +36,24 @@ Requires: python3-numpy python3-pandas python3-psutil ipmitool
%{python3_sitelib}/*
%changelog
* Sat Mar 9 2024 queyanwen<queyanwen@huawei.com> - 1.0.1-4
- Adapts to 920B: sleeps for 2 seconds after the fan speed is set.
* Thur Nov 30 2023 queyanwen<queyanwen@huawei.com> - 1.0.1-3
- The current condition for determining whether the system enters the stable state is that
- the difference between the maximum temperature and the minimum temperature within 60s is less than 0.2 degrees.
- This judgment is too strict and needs to be changed to 2 degrees.
- In addition, the average fuzzy processing in five windows is used to prevent data jitter.
- When the entire system can obtain the CPU power consumption data, the obtained CPU power consumption
- is directly used during training, instead of obtaining the CPU power consumption by inferring.
* Mon Jun 12 2023 queyanwen<queyanwen@huawei.com> - 1.0.1-2
- Optimize the accuracy of non-steady-state data prediction and training.
- The anbient temperature check is added befor the collection is started. If the temperature is
- greater than 28°C, the collection will not be started.
* Mon May 29 2023 queyanwen<queyanwen@huawei.com> - 1.0.1-1
- Added the handling of overtemperature scenarios of system components during data collection.
* Wed Mar 15 2023 queyanwen<queyanwen@huawei.com> - 1.0.0-1
- First Release