Browse Source

Rename OPENBLAS_FAILED

pull/1433/head
xoviat 8 years ago
parent
commit
623a9f45e7
2 changed files with 4 additions and 2 deletions
  1. +1
    -1
      ctest/c_xerbla.c
  2. +3
    -1
      ctest/cblas_test.h

+ 1
- 1
ctest/c_xerbla.c View File

@@ -81,7 +81,7 @@ void cblas_xerbla(blasint info, char *rout, char *form, ...)
printf("***** XERBLA WAS CALLED WITH INFO = %d INSTEAD OF %d in %s *******\n",info, cblas_info, rout);
cblas_lerr = PASSED;
cblas_ok = FALSE;
} else cblas_lerr = FAILED;
} else cblas_lerr = OPENBLAS_FAILED;
}

#ifdef F77_Char


+ 3
- 1
ctest/cblas_test.h View File

@@ -15,7 +15,9 @@
#define TEST_ROW_MJR 1

#define FALSE 0
#define FAILED 0

/* Needed because failed is already defined on MSVC */
#define OPENBLAS_FAILED 0
#define TEST_COL_MJR 0

#define INVALID -1


Loading…
Cancel
Save