{% extends "reports/base.html" %} {% load report_tags %} {% block css %} table.profile td { line-height: inherit; border-bottom: inherit; padding: 0 1em 0 0.5em; } .treemarker { color: #666; font-family: monospace; white-space: pre; } {% endblock %} {% block title %} CPU capabilities report {% endblock %} {% block heading %} CPU capabilities {% endblock %} {% block content %}
Based on data submitted by players of 0 A.D.
See the index page for more stuff.
OS | Identifier | V/M/F | Freq | Num procs | Caches (data/instruction/unified) | TLBs | Feature bits | NUMA {% for cpu,users in cpus|sortedcpuitems %} |
---|---|---|---|---|---|---|---|---|
{{ cpu.os }} | {{ cpu.x86_vendor }}/{{ cpu.x86_model }}/{{ cpu.x86_family }} | {% if cpu.cpu_frequency = -1 %}{% else %}{{ cpu.cpu_frequency|cpufreqformat }}{% endif %} | {{ cpu.cpu_numpackages }}×{{ cpu.cpu_coresperpackage }}×{{ cpu.cpu_logicalpercore }} = {{ cpu.cpu_numprocs }} | " }} | " }} | {% for cap in cpu.caps|sort %}{% if cap in x86_cap_descs %}{{ cap }}{% else %}{{ cap }}{% endif %} {% endfor %} | {% if cpu.numa_numnodes != 1 %} Factor: {{ cpu.numa_factor|floatformat:3 }} Interleaved: {{ cpu.numa_interleaved }} |