File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -1334,8 +1334,18 @@ def ProcessorFeatures {
13341334 !listremove(ARLSFeatures, [FeatureWIDEKL]);
13351335
13361336 // Novalake
1337+ list<SubtargetFeature> NVLAdditionalFeatures = [FeatureAVX10_2,
1338+ FeatureMOVRS,
1339+ FeatureEGPR,
1340+ FeaturePush2Pop2,
1341+ FeaturePPX,
1342+ FeatureNF,
1343+ FeatureNDD,
1344+ FeatureZU,
1345+ FeatureCCMP,
1346+ FeaturePREFETCHI];
13371347 list<SubtargetFeature> NVLFeatures =
1338- !listconcat(PTLFeatures, [FeaturePREFETCHI] );
1348+ !listconcat(PTLFeatures, NVLAdditionalFeatures );
13391349
13401350 // Clearwaterforest
13411351 list<SubtargetFeature> CWFAdditionalFeatures = [FeaturePREFETCHI,
Original file line number Diff line number Diff line change @@ -176,7 +176,9 @@ constexpr FeatureBitset FeaturesArrowlakeS =
176176constexpr FeatureBitset FeaturesPantherlake =
177177 (FeaturesArrowlakeS ^ FeatureWIDEKL);
178178constexpr FeatureBitset FeaturesNovalake =
179- FeaturesPantherlake | FeaturePREFETCHI;
179+ FeaturesPantherlake | FeaturePREFETCHI | FeatureAVX10_2 | FeatureMOVRS |
180+ FeatureEGPR | FeatureZU | FeatureCCMP | FeaturePush2Pop2 | FeaturePPX |
181+ FeatureNDD | FeatureNF;
180182constexpr FeatureBitset FeaturesClearwaterforest =
181183 (FeaturesSierraforest ^ FeatureWIDEKL) | FeatureAVXVNNIINT16 |
182184 FeatureSHA512 | FeatureSM3 | FeatureSM4 | FeaturePREFETCHI | FeatureUSERMSR;
You can’t perform that action at this time.
0 commit comments