- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
A call of dgesvd with a random matrix results in a segmentation fault. I work with MKL 8.0.2 on a Pention IV with Linux. A call of dgesvd with the same matrix using LAPACK leads to no error.
My program reads:
program ftest
integer M
integer N
integer Q
integer LWORK
parameter (M=300)
parameter (N=400)
parameter (Q=300)
parameter (LWORK=100000)
double precision A(M,N)
double precision U(M,M)
double precision VT(N,N)
double precision S(Q)
double precision WORK(LWORK)
integer INFO
do i=1,M
do j=1,N
A(i,j) = rand(0)
end do
end do
call dgesvd('A','A',M,N,A,M,S,U,M,VT,N,WORK,LWORK,INFO)
stop
end
I compile it with the command:
ifort ftest.f -lmkl_lapack -lmkl -lguide -o ftest
Is this a MKL-bug or a wrong usage of the function dgesvd?
Thanks for your interest!
My program reads:
program ftest
integer M
integer N
integer Q
integer LWORK
parameter (M=300)
parameter (N=400)
parameter (Q=300)
parameter (LWORK=100000)
double precision A(M,N)
double precision U(M,M)
double precision VT(N,N)
double precision S(Q)
double precision WORK(LWORK)
integer INFO
do i=1,M
do j=1,N
A(i,j) = rand(0)
end do
end do
call dgesvd('A','A',M,N,A,M,S,U,M,VT,N,WORK,LWORK,INFO)
stop
end
I compile it with the command:
ifort ftest.f -lmkl_lapack -lmkl -lguide -o ftest
Is this a MKL-bug or a wrong usage of the function dgesvd?
Thanks for your interest!
Enlace copiado
3 Respuestas
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Works fine with MKL 7.2 (Cluster)
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Segmentation fault also with MKL 8.0 on an Intel Xeon 64bit. According to the debugger, the error is in function mkl_blas_dgemm_copybt() in libmkl_p4n.so.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
http://softwareforums.intel.com/en-us/forums//topic/51912
I have a similar problem 8.0.1 with matrix sized 350x320. Couldn't find any solution.
Laszlo

Responder
Opciones de temas
- Suscribirse a un feed RSS
- Marcar tema como nuevo
- Marcar tema como leído
- Flotar este Tema para el usuario actual
- Favorito
- Suscribir
- Página de impresión sencilla