Mentions légales du service

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

pzgemm.c: minor coding style

parent 3d64ca8d
No related branches found
No related tags found
1 merge request!336Add the A-stationnary symm and hemm (Works only for side == ChamLeft for now)
......@@ -24,15 +24,15 @@
*/
#include "control/common.h"
#define A(m, n) A, m, n
#define B(m, n) B, m, n
#define C(m, n) C, m, n
#define WA(m, n) WA, m, n
#define WB(m, n) WB, m, n
#define A( _m_, _n_ ) A, (_m_), (_n_)
#define B( _m_, _n_ ) B, (_m_), (_n_)
#define C( _m_, _n_ ) C, (_m_), (_n_)
#define WA( _m_, _n_ ) WA, (_m_), (_n_)
#define WB( _m_, _n_ ) WB, (_m_), (_n_)
/**
* Parallel tile matrix-matrix multiplication.
* Generic algorithm for any data distribution.
* Generic algorithm for any data distribution with a stationnary A.
*/
static inline void
chameleon_pzgemm_Astat( CHAM_context_t *chamctxt, cham_trans_t transA, cham_trans_t transB,
......
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