{% extends 'base.html.twig' %} {% block title %}Cpu{% endblock %} {% block body %}

CPUs

{% for label, cpus in all %}
{% if label == 'not_acquired' or label == 'others' %} {% endif %} {% for cpu in cpus %} {% if label == 'not_acquired' or label == 'others' %} {% endif %} {% else %} {% endfor %}
  Model Vendor StringSocket(s) Part Number uArch Code Name Speed C/T Cache Igp Count Usable Notes
{{ cpu.brand.name }} {{ cpu.productLine }} | {{ cpu.model }} {% if cpu.vendorString %}{{ cpu.vendorString.value }}{% endif %}
    {% for socket in cpu.sockets %}
  • {{ socket.name }}
  • {% endfor %}
{{ cpu.partNumber }} {{ cpu.microArchitecture }} {{ cpu.codeName }} {{ cpu.baseSpeed }} {% if cpu.boostSpeed > 0 %} -{{ cpu.boostSpeed }} {% endif %} {{ cpu.cores }} / {{ cpu.threads }} {% if cpu.L1uCount > 0 %} {{ cpu.L1uCount }}x {{ cpu.L1uSize }}KB {{ cpu.L1uWay }}-way
{% endif %} {% if cpu.L1cCount > 0 %} L1d: {{ cpu.L1cCount }}x {{ cpu.L1dSize }}KB {{ cpu.L1dWay }}-way
L1c: {{ cpu.L1dCount }}x {{ cpu.L1cSize }}KB {{ cpu.L1cWay }}-way
{% endif %} {% if cpu.L2Count > 0 %}
L2: {{ cpu.L2Count }}x {{ cpu.L2Size }}KB {{ cpu.L2Way }}-way {% endif %} {% if cpu.L3Count > 0 %}
L3: {{ cpu.L3Count }}x {{ cpu.L3Size }}KB {{ cpu.L3Way }}-way {% endif %}
{{ cpu.igp }} {{ cpu.count }} {{ cpu.usable ? 'Yes' : 'No' }} {{ cpu.notes }}
no records found
{% endfor %}
{% endblock %}