python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Intel MKL ERROR: incorrect parameter when calling gemm()
I have this code:
void my_function(double *image_vector, double *endmembers, double *abundanceVector, int it, int lines, int samples, int bands, int targets)
{
double *h_Num;
double *h_aux;
...
gamersensual
Votes: 0
Answers: 2
CBLAS - ** On entry to SGEMM / DGEMM, parameter number X had an illegal value?
I am calling cblas_sgemm using the following parameters:
order: CblasRowMajor
transA, transB: either CblasTrans or CblasNoTrans
M: the number of rows (height) of the matrix op(A) and of the matrix...
PolarBear2015
Votes: 0
Answers: 1