代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/perftest 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From 08d1c895359c89ff16e85bc86dbe66fe47c90274 Mon Sep 17 00:00:00 2001
From: "v.v.mitrofanov" <v.v.mitrofanov@yadro.com>
Date: Mon, 31 Jan 2022 13:09:57 +0300
Subject: [PATCH 1/2] Get CPU MHz on RISC-V
This test needs to know current CPU MHz value to output test results correctly.
This patch set a CPU MHz value in case of using RISC-V arch.
get_cpu_mhz() tries to acquire CPU MHz value from /proc/cpuinfo for
some arches. It is not possible to get CPU MHz value from
/proc/cpuinfo on RISC-V. It returns always 0. But it is possible to
get this value calculated on cpu cycles. Use CPU cycles value calculated
in sample_get_cpu_mhz();
This patch is tested on SiFive HiFive Unmatched board.
Signed-off-by: v.v.mitrofanov <v.v.mitrofanov@yadro.com>
---
src/get_clock.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/get_clock.c b/src/get_clock.c
index acdc6f1..78ad865 100755
--- a/src/get_clock.c
+++ b/src/get_clock.c
@@ -222,6 +222,11 @@ double get_cpu_mhz(int no_cpu_freq_warn)
if (proc < 1)
proc = sample;
#endif
+ #ifdef __riscv
+ if (proc <= 0)
+ proc = sample;
+ #endif
+
if (!proc || !sample)
return 0;
--
2.40.1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。