{% extends 'form.html.twig' %} {% block title %}Cpu{% endblock %} {% block form %}
Id | {{ cpu.id }} | |
---|---|---|
Architecture | {{ cpu.architecture.value }} | |
Model | {{ cpu.brand.name }} {{ cpu.productLine }} {{ cpu.model }} | |
PartNumber | {{ cpu.partNumber }} | |
LotNumber | {{ cpu.lotNumber }} | |
MicroArchitecture | {{ cpu.microArchitecture }} | |
CodeName | {{ cpu.codeName }} | |
BaseSpeed | {{ cpu.baseSpeed }} | |
BoostSpeed | {{ cpu.boostSpeed }} | |
Cores / Threads | {{ cpu.cores }} / {{ cpu.threads }} | |
Igp | {{ cpu.igp }} | |
Voltage | {{ cpu.voltage }} | |
Tdp | {{ cpu.tdp }} | |
ProcessNode | {{ cpu.processNode }} | |
Count | {{ cpu.count }} | |
Usable | {{ cpu.usable ? 'Yes' : 'No' }} | |
Received | {{ cpu.received ? 'Yes' : 'No' }} | |
Link | {{ cpu.link }} | |
Notes | {{ cpu.notes }} | |
L1 | {% if cpu.L1uCount > 0 %}{{ cpu.L1uCount }}x {{ cpu.L1uSize }}KB {{ cpu.L1uWay }}-way | {% endif %} {% if cpu.L1cCount > 0 %}{{ cpu.L1cCount }}x {{ cpu.L1dSize }}KB {{ cpu.L1dWay }}-way data, {{ cpu.L1dCount }}x {{ cpu.L1cSize }}KB {{ cpu.L1cWay }}-way instruction | {% endif %}
L2 | {% if cpu.L2Count > 0 %} {{ cpu.L2Count }}x {{ cpu.L2Size }}KB {{ cpu.L2Way }}-way {% endif %} | |
L3 | {{ cpu.L3Count }}x {{ cpu.L3Size }}KB {{ cpu.L3Way }}-way |