You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( layout!=CblasRowMajor&&layout!=CblasColMajor ) {
45
-
c_xerbla( 1, "c_dtrsv", "Error: invalid argument. First argument must be a valid layout. Value: `%d`.", layout );
45
+
c_xerbla( 1, "c_dtrmv", "Error: invalid argument. First argument must be a valid layout. Value: `%d`.", layout );
46
46
return;
47
47
}
48
48
if ( uplo!=CblasLower&&uplo!=CblasUpper ) {
49
-
c_xerbla( 2, "c_dtrsv", "Error: invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%d`.", uplo );
49
+
c_xerbla( 2, "c_dtrmv", "Error: invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%d`.", uplo );
50
50
return;
51
51
}
52
52
if ( trans!=CblasTrans&&trans!=CblasConjTrans&&trans!=CblasNoTrans ) {
53
-
c_xerbla( 3, "c_dtrsv", "Error: invalid argument. Third argument must be a valid transpose operation. Value: `%d`.", trans );
53
+
c_xerbla( 3, "c_dtrmv", "Error: invalid argument. Third argument must be a valid transpose operation. Value: `%d`.", trans );
54
54
return;
55
55
}
56
56
if ( diag!=CblasNonUnit&&diag!=CblasUnit ) {
57
-
c_xerbla( 4, "c_dtrsv", "Error: invalid argument. Fourth argument must be a valid diagonal type. Value: `%d`.", diag );
57
+
c_xerbla( 4, "c_dtrmv", "Error: invalid argument. Fourth argument must be a valid diagonal type. Value: `%d`.", diag );
58
58
return;
59
59
}
60
60
if ( N<0 ) {
61
-
c_xerbla( 5, "c_dtrsv", "Error: invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.", N );
61
+
c_xerbla( 5, "c_dtrmv", "Error: invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.", N );
0 commit comments