1 Star 0 Fork 19

lijuzhang / perftest

forked from 杨晨光 / perftest 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0008-Get-CPU-MHz-on-RISC-V.patch 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lijuzhang/perftest.git
git@gitee.com:lijuzhang/perftest.git
lijuzhang
perftest
perftest
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891