File: magma_cmsupernodal.cpp

package info (click to toggle)
magma 2.9.0%2Bds-2
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 83,212 kB
  • sloc: cpp: 709,115; fortran: 121,916; ansic: 32,343; python: 25,603; f90: 15,208; makefile: 942; xml: 253; csh: 232; sh: 203; perl: 104
file content (265 lines) | stat: -rw-r--r-- 7,121 bytes parent folder | download | duplicates (3)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*
    -- MAGMA (version 2.9.0) --
       Univ. of Tennessee, Knoxville
       Univ. of California, Berkeley
       Univ. of Colorado, Denver
       @date January 2025

       @generated from sparse/control/magma_zmsupernodal.cpp, normal z -> c, Wed Jan 22 14:42:31 2025
       @author Hartwig Anzt

*/

#include "magmasparse_internal.h"


/***************************************************************************//**
    Purpose
    -------
    Generates a block-diagonal sparsity pattern with block-size bs

    Arguments
    ---------

    @param[in,out]
    max_bs      magma_int_t*
                Size of the largest diagonal block.

    @param[in]
    A           magma_c_matrix
                System matrix.

    @param[in,out]
    S           magma_c_matrix*
                Generated sparsity pattern matrix.

    @param[in]
    queue       magma_queue_t
                Queue to execute in.

    @ingroup magmasparse_caux
    ********************************************************************/

extern "C" magma_int_t
magma_cmsupernodal(
    magma_int_t *max_bs,
    magma_c_matrix A,
    magma_c_matrix *S,
    magma_queue_t queue )
{
    magma_int_t info = 0;

    magma_int_t *blocksizes=NULL, *blocksizes2=NULL, *start=NULL, *v=NULL;
    magma_int_t blockcount=0, blockcount2=0;
    
    magma_c_matrix x={Magma_CSR};
    //char *filename = "blocksizes";
    //int nlength = 6752;

    int maxblocksize = *max_bs;
    int current_size = 0;
    int prev_matches = 0;
    
    // make sure the target structure is empty
    magma_cmfree( S, queue );

    CHECK( magma_imalloc_cpu( &v, A.num_rows+10 ));
    CHECK( magma_imalloc_cpu( &start, A.num_rows+10 ));
    CHECK( magma_imalloc_cpu( &blocksizes, A.num_rows+10 ));
    CHECK( magma_imalloc_cpu( &blocksizes2, A.num_rows+10 ));

    v[0] = 1;

    for( magma_int_t i=1; i<A.num_rows; i++ ){
        // pattern matches the pattern of the previous row
        int match = 0; // 0 means match!
        if( prev_matches == maxblocksize ){ // bounded by maxblocksize
            match = 1; // no match
            prev_matches = 0;
        } else if( ((A.row[i+1]-A.row[i])-(A.row[i]-A.row[i-1])) != 0 ){
            match = 1; // no match
            prev_matches = 0;
        } else {
            magma_index_t length = (A.row[i+1]-A.row[i]);
            magma_index_t start1 = A.row[i-1];
            magma_index_t start2 = A.row[i];
            for( magma_index_t j=0; j<length; j++ ){
                if( A.col[ start1+j ] != A.col[ start2+j ] ){
                    match = 1;
                    prev_matches = 0;
                }
            }
            if( match == 0 ){
                prev_matches++; // add one match to the block
            }
        }
        v[ i ] = match;
    }

    // start = find[v];
    blockcount = 0;
    for( magma_int_t i=0; i<A.num_rows; i++ ){
        if( v[i] == 1 ){
            start[blockcount] = i;
            blockcount++;
        }
    }
    start[blockcount] = A.num_rows;

    for( magma_int_t i=0; i<blockcount; i++ ){
        blocksizes[i] = start[i+1] - start[i];
        if( blocksizes[i] > maxblocksize ){
            // maxblocksize = blocksizes[i];
            // printf("%% warning: at i=%5lld blocksize required is %5lld\n",
            //                                                (long long) i, (long long) blocksizes[i] );
        }
    }

    current_size = 0;
    blockcount2=0;
    for( magma_int_t i=0; i<blockcount; i++ ){
        if( current_size + blocksizes[i] > maxblocksize ){
            blocksizes2[ blockcount2 ] = current_size;
            blockcount2++;
            current_size = blocksizes[i]; // form new block
        } else {
            current_size = current_size + blocksizes[i]; // add to previous block
        }
        blocksizes[i] = start[i+1] - start[i];
    }
    blocksizes2[ blockcount2 ] = current_size;
    blockcount2++;
    
    *max_bs = maxblocksize;
    
//     magma_cvread( &x, nlength, filename, queue );
// for( int z=0; z< nlength; z++){
//     blocksizes2[z] = (magma_int_t) MAGMA_C_REAL((x.val[z]));  
// }
// blockcount2 = nlength;

    CHECK( magma_cmvarsizeblockstruct( A.num_rows, blocksizes2, blockcount2, MagmaLower, S, queue ) );
    
    CHECK( magma_index_malloc_cpu( &S->tile_desc_offset_ptr, blockcount2+1 ));
    S->tile_desc_offset_ptr[ 0 ] = 0;
    blockcount = 0;
    for( magma_int_t i=0; i<blockcount2; i++ ){
    blockcount = blockcount + blocksizes2[ i ];
        S->tile_desc_offset_ptr[ i+1 ] = blockcount ;        
    }
    
    S->numblocks = blockcount2;

cleanup:
    magma_free_cpu( v );
    magma_cmfree(&x, queue );
    magma_free_cpu( blocksizes );
    magma_free_cpu( blocksizes2 );
    magma_free_cpu( start );
    v = NULL;
    blocksizes = NULL;
    blocksizes2 = NULL;
    start = NULL;

    return info;
}


/***************************************************************************//**
    Purpose
    -------
    Generates a block-diagonal sparsity pattern with variable block-size

    Arguments
    ---------

    @param[in]
    n           magma_int_t
                Size of the matrix.

    @param[in]
    bs          magma_int_t*
                Vector containing the size of the diagonal blocks.

    @param[in]
    bsl         magma_int_t
                Size of the vector containing the block sizes.

    @param[in]
    uplotype    magma_uplo_t
                lower or upper triangular

    @param[in,out]
    A           magma_c_matrix*
                Generated sparsity pattern matrix.

    @param[in]
    queue       magma_queue_t
                Queue to execute in.

    @ingroup magmasparse_caux
    ********************************************************************/

extern "C" magma_int_t
magma_cmvarsizeblockstruct(
    magma_int_t n,
    magma_int_t *bs,
    magma_int_t bsl,
    magma_uplo_t uplotype,
    magma_c_matrix *A,
    magma_queue_t queue )
{
    magma_int_t info = 0;

    magma_int_t i, k, j, nnz = 0, col_start, row;

    A->val = NULL;
    A->col = NULL;
    A->row = NULL;
    A->rowidx = NULL;
    A->blockinfo = NULL;
    A->diag = NULL;
    A->dval = NULL;
    A->dcol = NULL;
    A->drow = NULL;
    A->drowidx = NULL;
    A->ddiag = NULL;
    A->num_rows = n;
    A->num_cols = n;
    A->memory_location = Magma_CPU;
    A->storage_type = Magma_CSR;
    A->nnz = 0;

    for( i=0; i<bsl; i++ ){
        A->nnz = A->nnz + bs[i] * bs[i];
    }

    CHECK( magma_cmalloc_cpu( &A->val, A->nnz ));
    CHECK( magma_index_malloc_cpu( &A->row, A->num_rows+1 ));
    CHECK( magma_index_malloc_cpu( &A->col, A->nnz ));
    nnz = 0;
    row = 0;
    col_start = 0;
    for( i=0; i<bsl; i++ ){
        for( j=0; j<bs[i]; j++ ){
            A->row[ row ] = nnz;
            row++;
            for( k=0; k<bs[i]; k++ ){
                A->val[ nnz + k ] = MAGMA_C_ONE;
                A->col[ nnz + k ] = col_start + k;
            }
            nnz = nnz+bs[i];
        }
        col_start = col_start + bs[i];
    }
    A->row[ row ] = nnz;


    CHECK( magma_cmcsrcompressor( A, queue ) );

    // magma_c_mvisu( *A, queue );

cleanup:

    return info;
}