Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
cd40c1fb
Commit
cd40c1fb
authored
Oct 03, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7dafe756
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
go/neo/t/neotest
go/neo/t/neotest
+9
-6
No files found.
go/neo/t/neotest
View file @
cd40c1fb
...
...
@@ -404,11 +404,12 @@ header() {
# cpu
# XXX review and read about CPU idle states more XXX
# XXX +power consumption
# XXX show C states usage diff after each benchmark XXX + same for P-states XXX ? D-states ?
# XXX somehow show stats about turbo?
# XXX show C states usage diff after each benchmark XXX + same for P-states
# XXX +cpufreq transition statistics (CPU_FREQ_STAT)
echo
-n
"# cpu: "
;
grep
"^model name"
/proc/cpuinfo |head
-1
|sed
-e
's/model name\s*: //'
find /sys/devices/system/cpu
-name
"cpu[0-9]*"
|
sort
-n
|
\
syscpu
=
/sys/devices/system/cpu
sysidle
=
$syscpu
/cpuidle
ls
-vd
$syscpu
/cpu[0-9]
*
|
\
while
read
cpu
;
do
# XXX deduplicate cpu info - if it is the same as prev - print "----//----"
cpuname
=
`
basename
$cpu
`
...
...
@@ -416,13 +417,15 @@ header() {
echo
"#
$cpuname
:"
echo
-e
"#
\t
freq:
`
cat
$f
/scaling_driver
`
/
`
cat
$f
/scaling_governor
`
[
`
fkghz
$f
/scaling_min_freq
`
-
`
fkghz
$f
/scaling_max_freq
`
]"
#echo -e "#\tenergy: `cat $f/energy_performance_preference`"
echo
-en
"#
\t
idle
/latency
:"
find
$cpu
/cpuidle
-name
"state[0-9]*"
|
sort
-n
|
\
echo
-en
"#
\t
idle
:
`
cat
$sysidle
/current_driver
`
/
`
cat
$sysidle
/current_governor_ro
`
:"
ls
-vd
$cpu
/cpuidle/state[0-9]
*
|
\
while
read
state
;
do
# XXX add target residency? (clarify about its meaning)
echo
-n
"
`
cat
$state
/name
`
(
`
cat
$state
/latency
`
μs)"
done
echo
# XXX warn if != "performance"
# XXX warn if freq != stable
# XXX warn if idle latency is too much
done
# disk under .
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment