Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Komodo - Benchmark results
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoon
Komodo - Benchmark results
Commits
090832cf
Verified
Commit
090832cf
authored
2 months ago
by
STEVAN Antoine
Browse files
Options
Downloads
Patches
Plain Diff
add CPU table
parent
3a27afc9
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
html.nu
+69
-0
69 additions, 0 deletions
html.nu
with
69 additions
and
0 deletions
html.nu
+
69
−
0
View file @
090832cf
...
...
@@ -22,6 +22,7 @@ export def generate-page [
mkdir html
let img = $"../gallery/($figure.hash).png"
let cpu = open $"cpus/($cpu).json"
let html_lines = [
'
<!doctype html>
'
...
...
@@ -50,6 +51,74 @@ export def generate-page [
$" ($figure.title)"
'
</p>
'
$"
<a
href=
\"($img)\"
target=
\"_blank\"
><img
src=
\"($img)\"
width=
80%
></a>
"
''
'
<h3>
CPU
</h3>
'
'
<table>
'
'
<tbody>
'
'
<tr>
'
'
<td
rowspan=
"5"
>
Architecture
</td>
'
$'
<td>
Name
</td><td>
($cpu."Architecture")
</td>
'
'
</tr>
'
'
<tr>
'
$"
<td>
mode\(s\)
</td><td>
($cpu.'CPU op-mode(s)')
</td>
"
'
</tr>
'
'
<tr>
'
$"
<td>
Address sizes
</td><td>
($cpu.'Address sizes')
</td>
"
'
<tr>
'
$"
<td>
Byte order
</td><td>
($cpu.'Byte Order')
</td>
"
'
<tr>
'
$"
<td>
Model
</td><td>
($cpu.'Model name')
</td>
"
'
</tr>
'
'
<tr>
'
'
<td
rowspan=
"11"
>
CPU(s)
</td>
'
$'
<td>
Count
</td><td>
($cpu."CPU(s)")
</td>
'
'
</tr>
'
'
<tr>
'
$"
<td>
On-line List
</td><td>
($cpu.'On-line CPU(s) list')
</td>
"
'
<tr>
'
$"
<td>
Family
</td><td>
($cpu.'CPU family')
</td>
"
'
<tr>
'
$"
<td>
Model
</td><td>
($cpu.'Model')
</td>
"
'
<tr>
'
$"
<td>
Thread\(s\) per core
</td><td>
($cpu.'Thread(s) per core')
</td>
"
'
<tr>
'
$"
<td>
Core\(s\) per socket
</td><td>
($cpu.'Core(s) per socket')
</td>
"
'
<tr>
'
$"
<td>
Socket\(s\)
</td><td>
($cpu.'Socket(s)')
</td>
"
'
<tr>
'
$"
<td>
Stepping
</td><td>
($cpu.'Stepping')
</td>
"
'
<tr>
'
$"
<td>
max MHz
</td><td>
($cpu.'CPU max MHz')
</td>
"
'
<tr>
'
$"
<td>
min MHz
</td><td>
($cpu.'CPU min MHz')
</td>
"
'
<tr>
'
$"
<td>
BogoMIPS
</td><td>
($cpu.'BogoMIPS')
</td>
"
'
</tr>
'
'
<tr>
'
$'
<td
colspan=
"2"
>
Virtualization
</td><td>
($cpu.Virtualization)
</td>
'
'
</tr>
'
'
<tr>
'
'
<td
rowspan=
"4"
>
Cache
</td>
'
$'
<td>
L1d
</td><td>
($cpu."L1d cache")
</td>
'
'
</tr>
'
'
<tr>
'
$'
<td>
L1i
</td><td>
($cpu."L1i cache")
</td>
'
'
</tr>
'
'
<tr>
'
$'
<td>
L2
</td><td>
($cpu."L2 cache")
</td>
'
'
</tr>
'
'
<tr>
'
$'
<td>
L3
</td><td>
($cpu."L3 cache")
</td>
'
'
</tr>
'
'
<tr>
'
'
<td
rowspan=
"2"
>
NUMA
</td>
'
$"
<td>
node\(s\)
</td><td>
($cpu.'NUMA node(s)')
</td>
"
'
</tr>
'
'
<tr>
'
$"
<td>
node0 CPU\(s\)
</td><td>
($cpu.'NUMA node0 CPU(s)')
</td>
"
'
</tr>
'
'
</tbody>
'
'
</table>
'
''
'
<h3>
Run parameters
</h3>
'
...(do {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment