Skip to content

Commit

Permalink
Merge pull request #102 from abouteiller/bugfix/adt_no_pointer
Browse files Browse the repository at this point in the history
fix: adt structure passed by value accessed as a pointer in scalapack
  • Loading branch information
abouteiller authored Oct 24, 2023
2 parents b489fd6 + b56ff6b commit 8db7dec
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 8db7dec

Please sign in to comment.