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 fdf71d6 commit 043f3d6Copy full SHA for 043f3d6
driver/others/dynamic_power.c
@@ -52,6 +52,9 @@ static gotoblas_t *get_coretype(void) {
52
if (__builtin_cpu_supports ("arch_3_1") && __builtin_cpu_supports ("mma"))
53
return &gotoblas_POWER10;
54
#endif
55
+ /* Fall back to the POWER9 implementation if the toolchain is too old or the MMA feature is not set */
56
+ if (__builtin_cpu_is("power10"))
57
+ return &gotoblas_POWER9;
58
return NULL;
59
}
60
0 commit comments