We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a744897 commit d7a2b6bCopy full SHA for d7a2b6b
interface/gemv.c
@@ -127,6 +127,12 @@ static inline int get_gemv_optimal_nthreads(BLASLONG MN) {
127
if (strcmp(gotoblas_corename(), "neoversev2") == 0) {
128
return get_gemv_optimal_nthreads_neoversev2(MN, ncpu);
129
}
130
+#elif defined(DYNAMIC_ARCH) && !defined(COMPLEX) && defined(DOUBLE) && !defined(BFLOAT16)
131
+ if (strcmp(gotoblas_corename(), "neoversev1") == 0) {
132
+ return get_dgemv_optimal_nthreads_neoversev1(MN, ncpu);
133
+ }
134
+
135
136
#endif
137
138
if ( MN < 115200L * GEMM_MULTITHREAD_THRESHOLD )
0 commit comments