Need help compiling magma on windows
Posted: Sun Sep 25, 2011 1:28 pm
Hi, I'm trying to get it compiled on windows, and ran into following missing simbol:
magma_zssrfb
Simbols like 'strsm_' and 'sgemm_' I should find blas/lapack library like mkl ? (correct me if I'm wrong).
Also, in file ztsqrt_gpu on line 141 visual studio compiler complains about not being to cast, so I have replaced this:
with this:
(also - correct me if I'm wrong).
Thansk for help!
Sergey.
magma_zssrfb
Simbols like 'strsm_' and 'sgemm_' I should find blas/lapack library like mkl ? (correct me if I'm wrong).
Also, in file ztsqrt_gpu on line 141 visual studio compiler complains about not being to cast, so I have replaced this:
Code: Select all
work[0] = (cuDoubleComplex) lwkopt;Code: Select all
work[0] = make_cuDoubleComplex(lwkopt,0);Thansk for help!
Sergey.