Skip to content

Commit ff27821

Browse files
authored
Remove unrecognized features.
1 parent f6d0582 commit ff27821

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/arm/mach/init.c

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -409,21 +409,6 @@ void cpuinfo_arm_mach_init(void) {
409409
cpuinfo_isa.sme2 = true;
410410
}
411411

412-
const uint32_t has_feat_sme2p1 = get_sys_info_by_name("hw.optional.arm.FEAT_SME2p1");
413-
if (has_feat_sme2p1 != 0) {
414-
cpuinfo_isa.sme2p1 = true;
415-
}
416-
417-
const uint32_t has_feat_sme_b16b16 = get_sys_info_by_name("hw.optional.arm.FEAT_SME_B16B16");
418-
if (has_feat_sme_b16b16 != 0) {
419-
cpuinfo_isa.sme_b16b16 = true;
420-
}
421-
422-
const uint32_t has_feat_sme_f16f16 = get_sys_info_by_name("hw.optional.arm.FEAT_SME_F16F16");
423-
if (has_feat_sme_f16f16 != 0) {
424-
cpuinfo_isa.sme_f16f16 = true;
425-
}
426-
427412
uint32_t num_clusters = 1;
428413
for (uint32_t i = 0; i < mach_topology.cores; i++) {
429414
cores[i] = (struct cpuinfo_core){

0 commit comments

Comments
 (0)