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.