Why does magma_dgemm silently fail?
Posted: Fri May 02, 2014 3:24 pm
Hi, I am just trying to run a small test program with my new MAGMA 1.5.0-beta1 installation. I tried a call like this:
//initialize A, B and C on host. A is all 1's, B is all 2's, and C is all 0's
magma_init();
magma_dgemm(MagmaTrans,MagmaNoTrans,m,n,k,alpha,A,m,B,n,beta,C,n); //alpha=1.0, beta=0.0
magma_finalize();
And I found that the magma_dgemm call silently failed. There was no error output at all, but C still contains all 0's.
I am not sure what I am doing wrong here. Can anybody help? (Some other magma functions actually work, so I am not sure what is so special with dgemm). Thanks!
//initialize A, B and C on host. A is all 1's, B is all 2's, and C is all 0's
magma_init();
magma_dgemm(MagmaTrans,MagmaNoTrans,m,n,k,alpha,A,m,B,n,beta,C,n); //alpha=1.0, beta=0.0
magma_finalize();
And I found that the magma_dgemm call silently failed. There was no error output at all, but C still contains all 0's.
I am not sure what I am doing wrong here. Can anybody help? (Some other magma functions actually work, so I am not sure what is so special with dgemm). Thanks!