Skip to content

Commit

Permalink
fix: adt structure passed by value accessed as a pointer in scalapack
Browse files Browse the repository at this point in the history
wrapper verbose debug

Signed-off-by: Aurelien Bouteiller <bouteill@icl.utk.edu>
  • Loading branch information
abouteiller committed Oct 24, 2023
1 parent b489fd6 commit b56ff6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/dplasma_lapack_adtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ dplasma_set_dtt_to_info( const dplasma_data_collection_t *dc,
parsec_hash_table_unlock_bucket(dplasma_datatypes_lapack_helper, k);
PARSEC_DEBUG_VERBOSE(27, parsec_debug_output,
" insert dtt -> info lda %d rows %d cols %d loc %d shape %d layout %d dtt %p arena %p (%30s)",
info->lda, info->rows, info->cols, info->loc, info->shape, info->layout, adt->opaque_dtt, adt->arena, static_desc);
info->lda, info->rows, info->cols, info->loc, info->shape, info->layout, adt.opaque_dtt, adt.arena, static_desc);
return 0;
}

Expand Down Expand Up @@ -149,7 +149,7 @@ dplasma_set_info_to_dtt( const dplasma_data_collection_t *dc,
parsec_hash_table_unlock_bucket(dplasma_datatypes_lapack_helper, k);
PARSEC_DEBUG_VERBOSE(27, parsec_debug_output,
" insert dtt <- info lda %d rows %d cols %d loc %d shape %d layout %d dtt %p arena %p (%30s)",
info->lda, info->rows, info->cols, info->loc, info->shape, info->layout, adt->opaque_dtt, adt->arena, static_desc);
info->lda, info->rows, info->cols, info->loc, info->shape, info->layout, adt.opaque_dtt, adt.arena, static_desc);
return 0;
}

Expand Down

0 comments on commit b56ff6b

Please sign in to comment.