Mentions légales du service

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

Fix coverity issue 1516253 Arguments in wrong order

parent a746da72
No related branches found
No related tags found
1 merge request!338Fix a bunch of warning reported by coverity on the recents MR
......@@ -89,7 +89,7 @@ testing_ztrmm_desc( run_arg_list_t *args, int check )
hres = CHAMELEON_ztrmm_Tile( side, uplo, trans, diag, alpha, descA, descB );
}
test_data.hres = hres;
testing_stop( &test_data, flops_ztrmm( side, N, M ) );
testing_stop( &test_data, flops_ztrmm( side, M, N ) );
/* Checks the solution */
if ( check ) {
......@@ -155,7 +155,7 @@ testing_ztrmm_std( run_arg_list_t *args, int check )
testing_start( &test_data );
cblas_ztrmm( CblasColMajor, (CBLAS_SIDE)side, (CBLAS_UPLO)uplo, (CBLAS_TRANSPOSE)trans,
(CBLAS_DIAG)diag, M, N, CBLAS_SADDR(alpha), A, LDA, B, LDB );
testing_stop( &test_data, flops_ztrmm( side, N, M ) );
testing_stop( &test_data, flops_ztrmm( side, M, N ) );
#else
testing_start( &test_data );
switch ( api ) {
......@@ -175,7 +175,7 @@ testing_ztrmm_std( run_arg_list_t *args, int check )
return -1;
}
test_data.hres = hres;
testing_stop( &test_data, flops_ztrmm( side, N, M ) );
testing_stop( &test_data, flops_ztrmm( side, M, N ) );
/* Checks the solution */
if ( check ) {
......
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