Mentions légales du service

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

print: Fix minor compilation warnings

parent 50119f14
No related branches found
No related tags found
1 merge request!398Generic data distribution specification
......@@ -9,10 +9,10 @@
*
* @brief Chameleon zprint wrappers
*
* @version 1.2.0
* @version 1.3.0
* @author Mathieu Faverge
* @author Matthieu Kuhn
* @date 2022-02-22
* @date 2023-07-05
* @precisions normal z -> s d c
*
*/
......@@ -42,7 +42,7 @@ zprint( const CHAM_desc_t *descA,
int tempmm = m == descA->mt-1 ? descA->m-m*descA->mb : descA->mb;
int tempnn = n == descA->nt-1 ? descA->n-n*descA->nb : descA->nb;
int lda, i;
int lda;
if ( zprint_runtime_id == RUNTIME_SCHED_PARSEC ) {
A = (CHAMELEON_Complex64_t*)tileA;
......
......@@ -9,10 +9,10 @@
*
* @brief Chameleon core_zprint CPU kernel
*
* @version 1.2.0
* @version 1.3.0
* @author Mathieu Faverge
* @author Florent Pruvost
* @date 2020-03-03
* @date 2023-07-05
* @precisions normal z -> c d s
*
*/
......@@ -28,7 +28,7 @@ CORE_zprint( FILE *file, const char *header,
int i, j;
fflush( output );
fprintf( output, "--- %10s (%2d, %2d) / %p, %d:\n", header, Am, An, A, lda );
fprintf( output, "--- %10s (%2d, %2d) / %p, %d:\n", header, Am, An, (void*)A, lda );
for(i=0; i<M; i++) {
fprintf( output, " " );
for(j=0; j<N; j++) {
......
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