Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1467377f authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

compute/zgemm: check ws before unreferencing it

parent 2da33406
No related branches found
No related tags found
1 merge request!257Set of bugfix
......@@ -291,7 +291,7 @@ chameleon_pzgemm( struct chameleon_pzgemm_s *ws,
}
RUNTIME_options_init( &options, chamctxt, sequence, request );
if ( ws->summa )
if ( ws && ws->summa )
{
chameleon_pzgemm_summa( chamctxt, transA, transB, alpha, A, B, beta, C,
&(ws->WA), &(ws->WB), &options );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment