I'm using ACML's blas and lapack routines on the intel cpu, everything goes well, except for one thing
I have two matrix G(L*L) and t(L*M),what I need is t_trans * G *t,
(here M=length*width)
so I use zgemm to time G and t first :
zgemm('N','N',L, length*width, L, &alpha,G00, L, t_left, L, &beta, G00_t_left, L);
it worked out, but when I use zgemm to time t_trans and G*t(got last step):
/* compute t_left_de*G00*t_left =xigma_R_left */
doublecomplex xigma_R_left[length*width*length*width];
zgemm('T','N',length*width,length*width,L,&alpha,t_left,L,G00_t_left,L,&beta,
xigma_R_left,length*width);
it comes out segmentation fault.
anyone know what's wrong here?

