I have a program that runs through R but uses the BLAS routines. It runs through correctly about 8 times but then throws an error:
BLAS/LAPACK routine 'DGEMV ' gave error code -6
What does this error code mean?
|
feedback
|
|
R defines the XERBLA function as
from the src/main/print.c file. the Netlib version of dgemv.f shows that only the input parameters are checked. A code of 6 shows a problem with either the LDA or M parameter.
So it appears that R takes the negative of the BLAS error code, which I think causes lots of confusion. I think this answers my question but not my problem, since it works several times with the same parameters before the error is thrown. | |||
|
feedback
|
|
DGEMV does not return any error codes. This bug implies that the error is coming from Perhaps you should file a bug against | |||||||
feedback
|