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.
1 parent 63fa3c3 commit b94dab5Copy full SHA for b94dab5
driver/others/dynamic_power.c
@@ -202,7 +202,7 @@ static gotoblas_t *get_coretype(void) {
202
return &gotoblas_POWER10;
203
#endif
204
/* Fall back to the POWER9 implementation if the toolchain is too old or the MMA feature is not set */
205
-#if (!defined __GNUC__) || ( __GNUC__ >= 11)
+#if (!defined __GNUC__) || ( __GNUC__ >= 11) || (__GNUC__ == 10 && __GNUC_MINOR__ >= 2)
206
if (__builtin_cpu_is("power10"))
207
return &gotoblas_POWER9;
208
0 commit comments