Browse Source

Update test_zgemv_t.c

pull/4691/head
Martin Kroeker GitHub 2 years ago
parent
commit
744db840b9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utest/test_extensions/test_zgemv_t.c

+ 1
- 1
utest/test_extensions/test_zgemv_t.c View File

@@ -75,7 +75,7 @@ static void matrix_vector_product(blasint n, blasint m, blasint lda, blasint inc
for (i = 0; i < n * inc_x; i += inc_x)
{
#ifdef RETURN_BY_STACK
BLASFUNC(zdotu)(result,&lda, a_ptr, &one, x_ptr, &inc_x);
BLASFUNC(zdotu)(&result, &lda, a_ptr, &one, x_ptr, &inc_x);
#else
result = BLASFUNC(zdotu)(&lda, a_ptr, &one, x_ptr, &inc_x);
#endif


Loading…
Cancel
Save