Skip to content

Commit ceb9d71

Browse files
committed
add an additional ADL cpu model
Change-Id: I962c77323ffa07a262e69caf82fd904e8e35f417
1 parent 77476ae commit ceb9d71

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/cpucounters.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2349,6 +2349,9 @@ bool PCM::checkModel()
23492349
case TGL_1:
23502350
cpu_model = TGL;
23512351
break;
2352+
case ADL_1:
2353+
cpu_model = ADL;
2354+
break;
23522355
}
23532356

23542357
if(!isCPUModelSupported((int)cpu_model))

src/cpucounters.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,6 +1401,7 @@ class PCM_API PCM
14011401
TGL = 140,
14021402
TGL_1 = 141,
14031403
ADL = 151,
1404+
ADL_1 = 154,
14041405
BDX = 79,
14051406
KNL = 87,
14061407
SKL = 94,

0 commit comments

Comments
 (0)