Compare commits

...

12 Commits

Author SHA1 Message Date
openeuler-ci-bot
2b080333b3
!16 版本号保持1.0.1
From: @queyanwen 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-12-04 03:41:35 +00:00
queyanwen
61fba19ab8 版本号保持1.0.1-3 2023-12-04 11:17:47 +08:00
openeuler-ci-bot
eb50ec825c
!12 mpctool: 数据采集前判断稳态条件苛刻,且不具备防抖能力
From: @queyanwen 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-12-04 02:32:24 +00:00
queyanwen
020d204b1b mpctool: 能获取CPU功耗时,直接使用CPU功耗值,解决稳态判断太严格,以及抖动带来误判问题 2023-11-30 17:01:35 +08:00
openeuler-ci-bot
d681e2f750
!10 mpctool: 非稳态数据和寻找最低风扇速率优化,提高模型准确度
From: @queyanwen 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-06-14 01:54:43 +00:00
queyanwen
1e685a894d mpctool: 非稳态数据和寻找最低风扇速率优化,提高模型准确度 2023-06-12 10:43:24 +08:00
openeuler-ci-bot
0c5c532a89
!8 【mpctool】优化数据采集过程中,系统过温或其他异常场景下的保护
From: @queyanwen 
Reviewed-by: @jimmy-jiang-junior 
Signed-off-by: @jimmy-jiang-junior
2023-05-29 04:00:21 +00:00
queyanwen
2188cfe588 Added protection measures for overtemperature or sensor exceptions of components such as CPU and memory during data collection. 2023-05-29 11:20:22 +08:00
openeuler-ci-bot
1a1ad76291
!3 Match the package name with the library name.
From: @queyanwen 
Reviewed-by: @jimmy-jiang-junior 
Signed-off-by: @jimmy-jiang-junior
2023-03-15 11:21:16 +00:00
queyanwen
6848c61a72 Match the package name with the library name. 2023-03-15 18:59:15 +08:00
openeuler-ci-bot
bf893a4e3d
!2 Add yaml file
From: @queyanwen 
Reviewed-by: @wuhaotian315 
Signed-off-by: @wuhaotian315
2023-03-15 03:25:59 +00:00
openeuler-ci-bot
4898caf176
!1 Add mpctool package
From: @queyanwen 
Reviewed-by: @jimmy-jiang-junior 
Signed-off-by: @jimmy-jiang-junior
2023-03-13 03:09:11 +00:00
3 changed files with 27 additions and 12 deletions

BIN
eagle-mpctool.tar.gz Normal file

Binary file not shown.

View File

@ -1,23 +1,22 @@
Name: python-mpctool
Version: 1.0.0
Release: 1
Summary: mpctool
Name: eagle
Version: 1.0.1
Release: 3
Summary: eagle kit
License: Mulan PSL v2
URL: https://gitee.com/openeuler/eagle
Source0: mpctool.tar.gz
Source0: eagle-mpctool.tar.gz
Requires: python3-numpy python3-pandas python3-psutil
%description
%define debug_package %{nil}
%package -n python3-mpctool
Summary: Python3 package for python-mpctool
%package -n python3-eagle-mpctool
Summary: Python3 package for python-ealge-mpctool
BuildRequires: python3-devel python3-setuptools
BuildRequires: python3-numpy python3-pandas python3-psutil
Requires: python3-numpy python3-pandas python3-psutil python3-scipy ipmitool
%description -n python3-mpctool
%description -n python3-eagle-mpctool
%prep
@ -30,12 +29,28 @@ BuildRequires: python3-numpy python3-pandas python3-psutil
%py3_install
%files -n python3-mpctool
%files -n python3-eagle-mpctool
%defattr(-,root,root)
%{_bindir}/mpctool
/usr/lib/systemd/system/mpctool.service
%{python3_sitelib}/*
%changelog
* Sun Mar 12 2023 queyanwen<queyanwen@huawei.com> - 1.0.0-1
* 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

Binary file not shown.