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

Brand


Id {{ cpu.id }}
Architecture {{ cpu.architecture }}
ProductLine {{ cpu.productLine }}
Model {{ cpu.model }}
PartNumber {{ cpu.partNumber }}
LotNumber {{ cpu.lotNumber }}
MicroArchitecture {{ cpu.microArchitecture }}
CodeName {{ cpu.codeName }}
BaseSpeed {{ cpu.baseSpeed }}
BoostSpeed {{ cpu.boostSpeed }}
Cores {{ cpu.cores }}
Threads {{ 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 }}
L1Count {{ cpu.L1Count }}
L1dSize {{ cpu.L1dSize }}
L1cSize {{ cpu.L1cSize }}
L1uSize {{ cpu.L1uSize }}
L1Way {{ cpu.L1Way }}
L2Count {{ cpu.L2Count }}
L2Size {{ cpu.L2Size }}
L2Way {{ cpu.L2Way }}
L3Count {{ cpu.L3Count }}
L3Size {{ cpu.L3Size }}
L3Way {{ cpu.L3Way }}
{% endblock %}