Mentions légales du service

Skip to content
Snippets Groups Projects

Bugfix - Load imbalance with QR/LQ algorithms

Merged Mathieu Faverge requested to merge faverge/chameleon:bugfix/qr_load_balance into master
23 files
+ 92
69
Compare changes
  • Side-by-side
  • Inline
Files
23
+ 3
3
@@ -4,7 +4,7 @@
@@ -4,7 +4,7 @@
*
*
* @copyright 2009-2014 The University of Tennessee and The University of
* @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved.
* Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
* Univ. Bordeaux. All rights reserved.
*
*
***
***
@@ -278,8 +278,8 @@ int CHAMELEON_zgelqf_Tile_Async( CHAM_desc_t *A, CHAM_desc_t *T,
@@ -278,8 +278,8 @@ int CHAMELEON_zgelqf_Tile_Async( CHAM_desc_t *A, CHAM_desc_t *T,
*/
*/
#if defined(CHAMELEON_COPY_DIAG)
#if defined(CHAMELEON_COPY_DIAG)
{
{
int m = chameleon_min(A->m, A->n);
int m = chameleon_min( A->m, A->n );
chameleon_zdesc_alloc(D, A->mb, A->nb, m, A->n, 0, 0, m, A->n, );
chameleon_zdesc_copy_and_restrict( A, &D, m, A->n );
Dptr = &D;
Dptr = &D;
}
}
#endif
#endif
Loading