We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e3d244 + 9d27841 commit 39ea79aCopy full SHA for 39ea79a
tools/isa-info.c
@@ -173,6 +173,8 @@ int main(int argc, char** argv) {
173
printf("SIMD extensions:\n");
174
printf("\tARM SVE: %s\n", cpuinfo_has_arm_sve() ? "yes" : "no");
175
printf("\tARM SVE 2: %s\n", cpuinfo_has_arm_sve2() ? "yes" : "no");
176
+ printf("\tARM SME: %s\n", cpuinfo_has_arm_sme() ? "yes" : "no");
177
+ printf("\tARM SME 2: %s\n", cpuinfo_has_arm_sme2() ? "yes" : "no");
178
179
printf("ARM SVE Capabilities:\n");
180
printf("\tSVE max length: %d\n", cpuinfo_get_max_arm_sve_length());
0 commit comments