We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d0582 commit ff27821Copy full SHA for ff27821
1 file changed
src/arm/mach/init.c
@@ -409,21 +409,6 @@ void cpuinfo_arm_mach_init(void) {
409
cpuinfo_isa.sme2 = true;
410
}
411
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
427
uint32_t num_clusters = 1;
428
for (uint32_t i = 0; i < mach_topology.cores; i++) {
429
cores[i] = (struct cpuinfo_core){
0 commit comments