1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-10-03 11:01:30 +00:00

Update all tests: add fields for L4 cache size, assoc. and line size.

This commit is contained in:
Veselin Georgiev 2016-07-07 00:44:45 +03:00
commit f52c02d394
78 changed files with 235 additions and 3 deletions

View file

@ -6,9 +6,10 @@ import os, sys, re, random
### Constants:
fields = [ "family", "model", "stepping", "extfamily", "extmodel", "cores",
"logical", "l1d-cache", "l1i-cache", "l2-cache", "l3-cache",
"l1d-assoc", "l2-assoc", "l3-assoc", "l1d-cacheline",
"l2-cacheline", "l3-cacheline", "sse-size", "codename", "flags" ]
"logical", "l1d-cache", "l1i-cache", "l2-cache", "l3-cache", "l4-cache",
"l1d-assoc", "l2-assoc", "l3-assoc", "l4-assoc", "l1d-cacheline",
"l2-cacheline", "l3-cacheline", "l4-cacheline", "sse-size",
"codename", "flags" ]
args = sys.argv
fix = False