1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/*
-- MAGMA (version 2.9.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date January 2025
@author Mark Gates
*/
#include "magma_internal.h"
/***************************************************************************//**
Purpose
-------
magma_iprint prints a matrix that is located on the CPU host.
The output is intended to be Matlab compatible, to be useful in debugging.
Arguments
---------
@param[in]
m INTEGER
The number of rows of the matrix A. M >= 0.
@param[in]
n INTEGER
The number of columns of the matrix A. N >= 0.
@param[in]
A INTEGER array, dimension (LDA,N), on the CPU host.
The M-by-N matrix to be printed.
@param[in]
lda INTEGER
The leading dimension of the array A. LDA >= max(1,M).
@ingroup magma_print
*******************************************************************************/
extern "C"
void magma_iprint(
magma_int_t m, magma_int_t n,
const magma_int_t *A, magma_int_t lda )
{
#define A(i,j) (A + (i) + (j)*lda)
magma_int_t info = 0;
if ( m < 0 )
info = -1;
else if ( n < 0 )
info = -2;
else if ( lda < max(1,m) )
info = -4;
if (info != 0) {
magma_xerbla( __func__, -(info) );
return; //info;
}
if ( m == 1 ) {
printf( "[ " );
}
else {
printf( "[\n" );
}
for( int i = 0; i < m; ++i ) {
for( int j = 0; j < n; ++j ) {
printf( " %8lld", (long long)*A(i,j) );
}
if ( m > 1 ) {
printf( "\n" );
}
else {
printf( " " );
}
}
printf( "];\n" );
}
/***************************************************************************//**
Purpose
-------
magma_iprint_gpu prints a matrix that is located on the GPU device.
Internally, it allocates CPU memory and copies the matrix to the CPU.
The output is intended to be Matlab compatible, to be useful in debugging.
Arguments
---------
@param[in]
m INTEGER
The number of rows of the matrix A. M >= 0.
@param[in]
n INTEGER
The number of columns of the matrix A. N >= 0.
@param[in]
dA INTEGER array, dimension (LDDA,N), on the GPU device.
The M-by-N matrix to be printed.
@param[in]
ldda INTEGER
The leading dimension of the array A. LDDA >= max(1,M).
@param[in]
queue magma_queue_t
Queue to execute in.
@ingroup magma_print
*******************************************************************************/
extern "C"
void magma_iprint_gpu(
magma_int_t m, magma_int_t n,
magma_int_t* dA, magma_int_t ldda,
magma_queue_t queue )
{
magma_int_t info = 0;
if ( m < 0 )
info = -1;
else if ( n < 0 )
info = -2;
else if ( ldda < max(1,m) )
info = -4;
if (info != 0) {
magma_xerbla( __func__, -(info) );
return; //info;
}
magma_int_t lda = m;
magma_int_t* A;
magma_imalloc_cpu( &A, lda*n );
magma_igetmatrix( m, n, dA, ldda, A, lda, queue );
magma_iprint( m, n, A, lda );
magma_free_cpu( A );
}
|