#endif
};
-#ifdef SMPTEST
+#ifdef SMP
static int (*trmv_thread[])(BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
#ifdef XDOUBLE
qtrmv_thread_NUU, qtrmv_thread_NUN, qtrmv_thread_NLU, qtrmv_thread_NLN,
int unit;
int trans;
FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
int nthreads;
#endif
int trans, uplo, unit;
blasint info;
FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
int nthreads;
#endif
buffer = (FLOAT *)blas_memory_alloc(1);
-#ifdef SMPTEST
+#ifdef SMP
nthreads = num_cpu_avail(2);
if (nthreads == 1) {
(trmv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer);
-#ifdef SMPTEST
+#ifdef SMP
} else {
(trmv_thread[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer, nthreads);
#endif
};
-#ifdef SMPTEST
+#ifdef SMP
static int (*trmv_thread[])(BLASLONG, FLOAT *, BLASLONG, FLOAT *, BLASLONG, FLOAT *, int) = {
#ifdef XDOUBLE
xtrmv_thread_NUU, xtrmv_thread_NUN, xtrmv_thread_NLU, xtrmv_thread_NLN,
int unit;
int trans;
FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
int nthreads;
#endif
int trans, uplo, unit;
blasint info;
FLOAT *buffer;
-#ifdef SMPTEST
+#ifdef SMP
int nthreads;
#endif
buffer = (FLOAT *)blas_memory_alloc(1);
-#ifdef SMPTEST
+#ifdef SMP
nthreads = num_cpu_avail(2);
if (nthreads == 1) {
(trmv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer);
-#ifdef SMPTEST
+#ifdef SMP
} else {
(trmv_thread[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer, nthreads);