23 printf(
"***** XERBLA WAS CALLED WITH SRNAME = <%s> INSTEAD OF <%s> *******\n", rout,
cblas_rout);
36 if (strstr(rout,
"gemm") != 0)
38 if (info == 5 ) info = 4;
39 else if (info == 4 ) info = 5;
40 else if (info == 11) info = 9;
41 else if (info == 9 ) info = 11;
43 else if (strstr(rout,
"symm") != 0 || strstr(rout,
"hemm") != 0)
45 if (info == 5 ) info = 4;
46 else if (info == 4 ) info = 5;
48 else if (strstr(rout,
"trmm") != 0 || strstr(rout,
"trsm") != 0)
50 if (info == 7 ) info = 6;
51 else if (info == 6 ) info = 7;
53 else if (strstr(rout,
"gemv") != 0)
55 if (info == 4) info = 3;
56 else if (info == 3) info = 4;
58 else if (strstr(rout,
"gbmv") != 0)
60 if (info == 4) info = 3;
61 else if (info == 3) info = 4;
62 else if (info == 6) info = 5;
63 else if (info == 5) info = 6;
65 else if (strstr(rout,
"ger") != 0)
67 if (info == 3) info = 2;
68 else if (info == 2) info = 3;
69 else if (info == 8) info = 6;
70 else if (info == 6) info = 8;
72 else if ( ( strstr(rout,
"her2") != 0 || strstr(rout,
"hpr2") != 0 )
73 && strstr(rout,
"her2k") == 0 )
75 if (info == 8) info = 6;
76 else if (info == 6) info = 8;
81 printf(
"***** XERBLA WAS CALLED WITH INFO = %" CBLAS_IFMT " INSTEAD OF %d in %s *******\n",info,
cblas_info, rout);
88void F77_xerbla(F77_Char F77_srname,
void *vinfo)
97 char rout[] = {
'c',
'b',
'l',
'a',
's',
'_',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0',
'\0'};
100 F77_Integer *info=vinfo;
118 for(i=0; i < 6; i++) rout[i+6] = tolower(srname[i]);
119 for(i=11; i >= 9; i--)
if (rout[i] ==
' ') rout[i] =
'\0';
void cblas_xerbla(CBLAS_INT info, const char *rout, const char *form,...)