Actual source code: sell.c

  1: /*
  2:   Defines the basic matrix operations for the SELL matrix storage format.
  3: */
  4: #include <../src/mat/impls/sell/seq/sell.h>
  5: #include <petscblaslapack.h>
  6: #include <petsc/private/kernels/blocktranspose.h>

  8: static PetscBool  cited      = PETSC_FALSE;
  9: static const char citation[] = "@inproceedings{ZhangELLPACK2018,\n"
 10:                                " author = {Hong Zhang and Richard T. Mills and Karl Rupp and Barry F. Smith},\n"
 11:                                " title = {Vectorized Parallel Sparse Matrix-Vector Multiplication in {PETSc} Using {AVX-512}},\n"
 12:                                " booktitle = {Proceedings of the 47th International Conference on Parallel Processing},\n"
 13:                                " year = 2018\n"
 14:                                "}\n";

 16: #if PetscDefined(HAVE_IMMINTRIN_H) && (defined(__AVX512F__) || (defined(__AVX2__) && defined(__FMA__)) || defined(__AVX__)) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)

 18:   #include <immintrin.h>

 20:   #if !defined(_MM_SCALE_8)
 21:     #define _MM_SCALE_8 8
 22:   #endif

 24:   #if defined(__AVX512F__)
 25:     /* these do not work
 26:    vec_idx  = _mm512_loadunpackhi_epi32(vec_idx,acolidx);
 27:    vec_vals = _mm512_loadunpackhi_pd(vec_vals,aval);
 28:   */
 29:     #define AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y) \
 30:       /* if the mask bit is set, copy from acolidx, otherwise from vec_idx */ \
 31:       vec_idx  = _mm256_loadu_si256((__m256i const *)acolidx); \
 32:       vec_vals = _mm512_loadu_pd(aval); \
 33:       vec_x    = _mm512_i32gather_pd(vec_idx, x, _MM_SCALE_8); \
 34:       vec_y    = _mm512_fmadd_pd(vec_x, vec_vals, vec_y)
 35:   #elif defined(__AVX2__) && defined(__FMA__)
 36:     #define AVX2_Mult_Private(vec_idx, vec_x, vec_vals, vec_y) \
 37:       vec_vals = _mm256_loadu_pd(aval); \
 38:       vec_idx  = _mm_loadu_si128((__m128i const *)acolidx); /* SSE2 */ \
 39:       vec_x    = _mm256_i32gather_pd(x, vec_idx, _MM_SCALE_8); \
 40:       vec_y    = _mm256_fmadd_pd(vec_x, vec_vals, vec_y)
 41:   #endif
 42: #endif /* PETSC_HAVE_IMMINTRIN_H */

 44: /*@
 45:   MatSeqSELLSetPreallocation - For good matrix assembly performance
 46:   the user should preallocate the matrix storage by setting the parameter `nz`
 47:   (or the array `nnz`).

 49:   Collective

 51:   Input Parameters:
 52: + B       - The `MATSEQSELL` matrix
 53: . rlenmax - number of nonzeros per row (same for all rows), ignored if `rlen` is provided
 54: - rlen    - array containing the number of nonzeros in the various rows (possibly different for each row) or `NULL`

 56:   Level: intermediate

 58:   Notes:
 59:   Specify the preallocated storage with either `rlenmax` or `rlen` (not both).
 60:   Set `rlenmax` = `PETSC_DEFAULT` and `rlen` = `NULL` for PETSc to control dynamic memory
 61:   allocation.

 63:   You can call `MatGetInfo()` to get information on how effective the preallocation was;
 64:   for example the fields mallocs,nz_allocated,nz_used,nz_unneeded;
 65:   You can also run with the option `-info` and look for messages with the string
 66:   malloc in them to see if additional memory allocation was needed.

 68:   Developer Notes:
 69:   Use `rlenmax` of `MAT_SKIP_ALLOCATION` to not allocate any space for the matrix
 70:   entries or columns indices.

 72:   The maximum number of nonzeos in any row should be as accurate as possible.
 73:   If it is underestimated, you will get bad performance due to reallocation
 74:   (`MatSeqXSELLReallocateSELL()`).

 76: .seealso: `Mat`, `MATSEQSELL`, `MATSELL`, `MatCreate()`, `MatCreateSELL()`, `MatSetValues()`, `MatGetInfo()`
 77:  @*/
 78: PetscErrorCode MatSeqSELLSetPreallocation(Mat B, PetscInt rlenmax, const PetscInt rlen[])
 79: {
 80:   PetscFunctionBegin;
 83:   PetscTryMethod(B, "MatSeqSELLSetPreallocation_C", (Mat, PetscInt, const PetscInt[]), (B, rlenmax, rlen));
 84:   PetscFunctionReturn(PETSC_SUCCESS);
 85: }

 87: PetscErrorCode MatSeqSELLSetPreallocation_SeqSELL(Mat B, PetscInt maxallocrow, const PetscInt rlen[])
 88: {
 89:   Mat_SeqSELL *b;
 90:   PetscInt     i, j, totalslices;
 91: #if PetscDefined(HAVE_CUPM)
 92:   PetscInt rlenmax = 0;
 93: #endif
 94:   PetscBool skipallocation = PETSC_FALSE, realalloc = PETSC_FALSE;

 96:   PetscFunctionBegin;
 97:   if (maxallocrow >= 0 || rlen) realalloc = PETSC_TRUE;
 98:   if (maxallocrow == MAT_SKIP_ALLOCATION) {
 99:     skipallocation = PETSC_TRUE;
100:     maxallocrow    = 0;
101:   }

103:   PetscCall(PetscLayoutSetUp(B->rmap));
104:   PetscCall(PetscLayoutSetUp(B->cmap));

106:   /* FIXME: if one preallocates more space than needed, the matrix does not shrink automatically, but for best performance it should */
107:   if (maxallocrow == PETSC_DEFAULT || maxallocrow == PETSC_DECIDE) maxallocrow = 5;
108:   PetscCheck(maxallocrow >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "maxallocrow cannot be less than 0: value %" PetscInt_FMT, maxallocrow);
109:   if (rlen) {
110:     for (i = 0; i < B->rmap->n; i++) {
111:       PetscCheck(rlen[i] >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "rlen cannot be less than 0: local row %" PetscInt_FMT " value %" PetscInt_FMT, i, rlen[i]);
112:       PetscCheck(rlen[i] <= B->cmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "rlen cannot be greater than row length: local row %" PetscInt_FMT " value %" PetscInt_FMT " rowlength %" PetscInt_FMT, i, rlen[i], B->cmap->n);
113:     }
114:   }

116:   B->preallocated = PETSC_TRUE;

118:   b = (Mat_SeqSELL *)B->data;

120:   if (!b->sliceheight) { /* not set yet */
121: #if PetscDefined(HAVE_CUPM)
122:     b->sliceheight = 16;
123: #else
124:     b->sliceheight = 8;
125: #endif
126:   }
127:   totalslices    = PetscCeilInt(B->rmap->n, b->sliceheight);
128:   b->totalslices = totalslices;
129:   if (!skipallocation) {
130:     if (B->rmap->n % b->sliceheight) PetscCall(PetscInfo(B, "Padding rows to the SEQSELL matrix because the number of rows is not the multiple of the slice height (value %" PetscInt_FMT ")\n", B->rmap->n));

132:     if (!b->sliidx) { /* sliidx gives the starting index of each slice, the last element is the total space allocated */
133:       PetscCall(PetscMalloc1(totalslices + 1, &b->sliidx));
134:     }
135:     if (!rlen) { /* if rlen is not provided, allocate same space for all the slices */
136:       if (maxallocrow == PETSC_DEFAULT || maxallocrow == PETSC_DECIDE) maxallocrow = 10;
137:       else if (maxallocrow < 0) maxallocrow = 1;
138: #if PetscDefined(HAVE_CUPM)
139:       rlenmax = maxallocrow;
140:       /* Pad the slice to DEVICE_MEM_ALIGN */
141:       while (b->sliceheight * maxallocrow % DEVICE_MEM_ALIGN) maxallocrow++;
142: #endif
143:       for (i = 0; i <= totalslices; i++) b->sliidx[i] = b->sliceheight * i * maxallocrow;
144:     } else {
145: #if PetscDefined(HAVE_CUPM)
146:       PetscInt mul = DEVICE_MEM_ALIGN / b->sliceheight;
147: #endif
148:       maxallocrow  = 0;
149:       b->sliidx[0] = 0;
150:       for (i = 1; i < totalslices; i++) {
151:         b->sliidx[i] = 0;
152:         for (j = 0; j < b->sliceheight; j++) b->sliidx[i] = PetscMax(b->sliidx[i], rlen[b->sliceheight * (i - 1) + j]);
153: #if PetscDefined(HAVE_CUPM)
154:         if (mul != 0) { /* Pad the slice to DEVICE_MEM_ALIGN if sliceheight < DEVICE_MEM_ALIGN */
155:           rlenmax      = PetscMax(b->sliidx[i], rlenmax);
156:           b->sliidx[i] = ((b->sliidx[i] - 1) / mul + 1) * mul;
157:         }
158: #endif
159:         maxallocrow = PetscMax(b->sliidx[i], maxallocrow);
160:         PetscCall(PetscIntSumError(b->sliidx[i - 1], b->sliceheight * b->sliidx[i], &b->sliidx[i]));
161:       }
162:       /* last slice */
163:       b->sliidx[totalslices] = 0;
164:       for (j = b->sliceheight * (totalslices - 1); j < B->rmap->n; j++) b->sliidx[totalslices] = PetscMax(b->sliidx[totalslices], rlen[j]);
165: #if PetscDefined(HAVE_CUPM)
166:       if (mul != 0) {
167:         rlenmax                = PetscMax(b->sliidx[i], rlenmax);
168:         b->sliidx[totalslices] = ((b->sliidx[totalslices] - 1) / mul + 1) * mul;
169:       }
170: #endif
171:       maxallocrow            = PetscMax(b->sliidx[totalslices], maxallocrow);
172:       b->sliidx[totalslices] = b->sliidx[totalslices - 1] + b->sliceheight * b->sliidx[totalslices];
173:     }

175:     /* allocate space for val, colidx, rlen */
176:     /* FIXME: should B's old memory be unlogged? */
177:     PetscCall(MatSeqXSELLFreeSELL(B, &b->val, &b->colidx));
178:     /* FIXME: assuming an element of the bit array takes 8 bits */
179:     PetscCall(PetscMalloc2(b->sliidx[totalslices], &b->val, b->sliidx[totalslices], &b->colidx));
180:     /* b->rlen will count nonzeros in each row so far. We dont copy rlen to b->rlen because the matrix has not been set. */
181:     PetscCall(PetscCalloc1(b->sliceheight * totalslices, &b->rlen));

183:     b->singlemalloc = PETSC_TRUE;
184:     b->free_val     = PETSC_TRUE;
185:     b->free_colidx  = PETSC_TRUE;
186:   } else {
187:     b->free_val    = PETSC_FALSE;
188:     b->free_colidx = PETSC_FALSE;
189:   }

191:   b->nz          = 0;
192:   b->maxallocrow = maxallocrow;
193: #if PetscDefined(HAVE_CUPM)
194:   b->rlenmax = rlenmax;
195: #else
196:   b->rlenmax = maxallocrow;
197: #endif
198:   b->maxallocmat      = b->sliidx[totalslices];
199:   B->info.nz_unneeded = (double)b->maxallocmat;
200:   if (realalloc) PetscCall(MatSetOption(B, MAT_NEW_NONZERO_ALLOCATION_ERR, PETSC_TRUE));
201:   PetscFunctionReturn(PETSC_SUCCESS);
202: }

204: static PetscErrorCode MatGetRow_SeqSELL(Mat A, PetscInt row, PetscInt *nz, PetscInt **idx, PetscScalar **v)
205: {
206:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
207:   PetscInt     shift;

209:   PetscFunctionBegin;
210:   PetscCheck(row >= 0 && row < A->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Row %" PetscInt_FMT " out of range", row);
211:   if (nz) *nz = a->rlen[row];
212:   shift = a->sliidx[row / a->sliceheight] + (row % a->sliceheight);
213:   if (!a->getrowcols) PetscCall(PetscMalloc2(a->rlenmax, &a->getrowcols, a->rlenmax, &a->getrowvals));
214:   if (idx) {
215:     PetscInt j;
216:     for (j = 0; j < a->rlen[row]; j++) a->getrowcols[j] = a->colidx[shift + a->sliceheight * j];
217:     *idx = a->getrowcols;
218:   }
219:   if (v) {
220:     for (PetscInt j = 0; j < a->rlen[row]; j++) a->getrowvals[j] = a->val[shift + a->sliceheight * j];
221:     *v = a->getrowvals;
222:   }
223:   PetscFunctionReturn(PETSC_SUCCESS);
224: }

226: static PetscErrorCode MatRestoreRow_SeqSELL(Mat A, PetscInt row, PetscInt *nz, PetscInt **idx, PetscScalar **v)
227: {
228:   PetscFunctionBegin;
229:   PetscFunctionReturn(PETSC_SUCCESS);
230: }

232: PetscErrorCode MatConvert_SeqSELL_SeqAIJ(Mat A, MatType newtype, MatReuse reuse, Mat *newmat)
233: {
234:   Mat          B;
235:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
236:   PetscInt     i;

238:   PetscFunctionBegin;
239:   if (reuse == MAT_REUSE_MATRIX) {
240:     B = *newmat;
241:     PetscCall(MatZeroEntries(B));
242:   } else {
243:     PetscCall(MatCreate(PetscObjectComm((PetscObject)A), &B));
244:     PetscCall(MatSetSizes(B, A->rmap->n, A->cmap->n, A->rmap->N, A->cmap->N));
245:     PetscCall(MatSetType(B, MATSEQAIJ));
246:     PetscCall(MatSeqAIJSetPreallocation(B, 0, a->rlen));
247:   }

249:   for (i = 0; i < A->rmap->n; i++) {
250:     PetscInt     nz = 0, *cols = NULL;
251:     PetscScalar *vals = NULL;

253:     PetscCall(MatGetRow_SeqSELL(A, i, &nz, &cols, &vals));
254:     PetscCall(MatSetValues(B, 1, &i, nz, cols, vals, INSERT_VALUES));
255:     PetscCall(MatRestoreRow_SeqSELL(A, i, &nz, &cols, &vals));
256:   }

258:   PetscCall(MatAssemblyBegin(B, MAT_FINAL_ASSEMBLY));
259:   PetscCall(MatAssemblyEnd(B, MAT_FINAL_ASSEMBLY));
260:   B->rmap->bs = A->rmap->bs;

262:   if (reuse == MAT_INPLACE_MATRIX) {
263:     PetscCall(MatHeaderReplace(A, &B));
264:   } else {
265:     *newmat = B;
266:   }
267:   PetscFunctionReturn(PETSC_SUCCESS);
268: }

270: #include <../src/mat/impls/aij/seq/aij.h>

272: PetscErrorCode MatConvert_SeqAIJ_SeqSELL(Mat A, MatType newtype, MatReuse reuse, Mat *newmat)
273: {
274:   Mat                B;
275:   Mat_SeqAIJ        *a  = (Mat_SeqAIJ *)A->data;
276:   PetscInt          *ai = a->i, m = A->rmap->N, n = A->cmap->N, i, *rowlengths, row, ncols;
277:   const PetscInt    *cols;
278:   const PetscScalar *vals;

280:   PetscFunctionBegin;
281:   if (reuse == MAT_REUSE_MATRIX) {
282:     B = *newmat;
283:   } else {
284:     if (PetscDefined(USE_DEBUG) || !a->ilen) {
285:       PetscCall(PetscMalloc1(m, &rowlengths));
286:       for (i = 0; i < m; i++) rowlengths[i] = ai[i + 1] - ai[i];
287:     }
288:     if (PetscDefined(USE_DEBUG) && a->ilen) {
289:       PetscBool eq;
290:       PetscCall(PetscArraycmp(rowlengths, a->ilen, m, &eq));
291:       PetscCheck(eq, PETSC_COMM_SELF, PETSC_ERR_PLIB, "SeqAIJ ilen array incorrect");
292:       PetscCall(PetscFree(rowlengths));
293:       rowlengths = a->ilen;
294:     } else if (a->ilen) rowlengths = a->ilen;
295:     PetscCall(MatCreate(PetscObjectComm((PetscObject)A), &B));
296:     PetscCall(MatSetSizes(B, m, n, m, n));
297:     PetscCall(MatSetType(B, MATSEQSELL));
298:     PetscCall(MatSeqSELLSetPreallocation(B, 0, rowlengths));
299:     if (rowlengths != a->ilen) PetscCall(PetscFree(rowlengths));
300:   }

302:   for (row = 0; row < m; row++) {
303:     PetscCall(MatGetRow_SeqAIJ(A, row, &ncols, (PetscInt **)&cols, (PetscScalar **)&vals));
304:     PetscCall(MatSetValues_SeqSELL(B, 1, &row, ncols, cols, vals, INSERT_VALUES));
305:     PetscCall(MatRestoreRow_SeqAIJ(A, row, &ncols, (PetscInt **)&cols, (PetscScalar **)&vals));
306:   }
307:   PetscCall(MatAssemblyBegin(B, MAT_FINAL_ASSEMBLY));
308:   PetscCall(MatAssemblyEnd(B, MAT_FINAL_ASSEMBLY));
309:   B->rmap->bs = A->rmap->bs;

311:   if (reuse == MAT_INPLACE_MATRIX) {
312:     PetscCall(MatHeaderReplace(A, &B));
313:   } else {
314:     *newmat = B;
315:   }
316:   PetscFunctionReturn(PETSC_SUCCESS);
317: }

319: PetscErrorCode MatMult_SeqSELL(Mat A, Vec xx, Vec yy)
320: {
321:   Mat_SeqSELL       *a = (Mat_SeqSELL *)A->data;
322:   PetscScalar       *y;
323:   const PetscScalar *x;
324:   const MatScalar   *aval        = a->val;
325:   PetscInt           totalslices = a->totalslices;
326:   const PetscInt    *acolidx     = a->colidx;
327:   PetscInt           i, j;
328: #if PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX512F__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
329:   __m512d  vec_x, vec_y, vec_vals;
330:   __m256i  vec_idx;
331:   __mmask8 mask;
332:   __m512d  vec_x2, vec_y2, vec_vals2, vec_x3, vec_y3, vec_vals3, vec_x4, vec_y4, vec_vals4;
333:   __m256i  vec_idx2, vec_idx3, vec_idx4;
334: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX2__) && defined(__FMA__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
335:   __m128i   vec_idx;
336:   __m256d   vec_x, vec_y, vec_y2, vec_vals;
337:   MatScalar yval;
338:   PetscInt  r, rows_left, row, nnz_in_row;
339: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
340:   __m128d   vec_x_tmp;
341:   __m256d   vec_x, vec_y, vec_y2, vec_vals;
342:   MatScalar yval;
343:   PetscInt  r, rows_left, row, nnz_in_row;
344: #else
345:   PetscInt     k, sliceheight = a->sliceheight;
346:   PetscScalar *sum;
347: #endif

349: #if PetscDefined(HAVE_PRAGMA_DISJOINT)
350:   #pragma disjoint(*x, *y, *aval)
351: #endif

353:   PetscFunctionBegin;
354:   PetscCall(VecGetArrayRead(xx, &x));
355:   PetscCall(VecGetArray(yy, &y));
356: #if PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX512F__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
357:   PetscCheck(a->sliceheight == 8, PETSC_COMM_SELF, PETSC_ERR_SUP, "The kernel requires a slice height of 8, but the input matrix has a slice height of %" PetscInt_FMT, a->sliceheight);
358:   for (i = 0; i < totalslices; i++) { /* loop over slices */
359:     PetscPrefetchBlock(acolidx, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);
360:     PetscPrefetchBlock(aval, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);

362:     vec_y  = _mm512_setzero_pd();
363:     vec_y2 = _mm512_setzero_pd();
364:     vec_y3 = _mm512_setzero_pd();
365:     vec_y4 = _mm512_setzero_pd();

367:     j = a->sliidx[i] >> 3; /* 8 bytes are read at each time, corresponding to a slice column */
368:     switch ((a->sliidx[i + 1] - a->sliidx[i]) / 8 & 3) {
369:     case 3:
370:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
371:       acolidx += 8;
372:       aval += 8;
373:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
374:       acolidx += 8;
375:       aval += 8;
376:       AVX512_Mult_Private(vec_idx3, vec_x3, vec_vals3, vec_y3);
377:       acolidx += 8;
378:       aval += 8;
379:       j += 3;
380:       break;
381:     case 2:
382:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
383:       acolidx += 8;
384:       aval += 8;
385:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
386:       acolidx += 8;
387:       aval += 8;
388:       j += 2;
389:       break;
390:     case 1:
391:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
392:       acolidx += 8;
393:       aval += 8;
394:       j += 1;
395:       break;
396:     }
397:   #pragma novector
398:     for (; j < (a->sliidx[i + 1] >> 3); j += 4) {
399:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
400:       acolidx += 8;
401:       aval += 8;
402:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
403:       acolidx += 8;
404:       aval += 8;
405:       AVX512_Mult_Private(vec_idx3, vec_x3, vec_vals3, vec_y3);
406:       acolidx += 8;
407:       aval += 8;
408:       AVX512_Mult_Private(vec_idx4, vec_x4, vec_vals4, vec_y4);
409:       acolidx += 8;
410:       aval += 8;
411:     }

413:     vec_y = _mm512_add_pd(vec_y, vec_y2);
414:     vec_y = _mm512_add_pd(vec_y, vec_y3);
415:     vec_y = _mm512_add_pd(vec_y, vec_y4);
416:     if (i == totalslices - 1 && A->rmap->n & 0x07) { /* if last slice has padding rows */
417:       mask = (__mmask8)(0xff >> (8 - (A->rmap->n & 0x07)));
418:       _mm512_mask_storeu_pd(&y[8 * i], mask, vec_y);
419:     } else {
420:       _mm512_storeu_pd(&y[8 * i], vec_y);
421:     }
422:   }
423: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX2__) && defined(__FMA__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
424:   PetscCheck(a->sliceheight == 8, PETSC_COMM_SELF, PETSC_ERR_SUP, "The kernel requires a slice height of 8, but the input matrix has a slice height of %" PetscInt_FMT, a->sliceheight);
425:   for (i = 0; i < totalslices; i++) { /* loop over full slices */
426:     PetscPrefetchBlock(acolidx, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);
427:     PetscPrefetchBlock(aval, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);

429:     /* last slice may have padding rows. Don't use vectorization. */
430:     if (i == totalslices - 1 && (A->rmap->n & 0x07)) {
431:       rows_left = A->rmap->n - 8 * i;
432:       for (r = 0; r < rows_left; ++r) {
433:         yval       = (MatScalar)0;
434:         row        = 8 * i + r;
435:         nnz_in_row = a->rlen[row];
436:         for (j = 0; j < nnz_in_row; ++j) yval += aval[8 * j + r] * x[acolidx[8 * j + r]];
437:         y[row] = yval;
438:       }
439:       break;
440:     }

442:     vec_y  = _mm256_setzero_pd();
443:     vec_y2 = _mm256_setzero_pd();

445:   /* Process slice of height 8 (512 bits) via two subslices of height 4 (256 bits) via AVX */
446:   #pragma novector
447:   #pragma unroll(2)
448:     for (j = a->sliidx[i]; j < a->sliidx[i + 1]; j += 8) {
449:       AVX2_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
450:       aval += 4;
451:       acolidx += 4;
452:       AVX2_Mult_Private(vec_idx, vec_x, vec_vals, vec_y2);
453:       aval += 4;
454:       acolidx += 4;
455:     }

457:     _mm256_storeu_pd(y + i * 8, vec_y);
458:     _mm256_storeu_pd(y + i * 8 + 4, vec_y2);
459:   }
460: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
461:   PetscCheck(a->sliceheight == 8, PETSC_COMM_SELF, PETSC_ERR_SUP, "The kernel requires a slice height of 8, but the input matrix has a slice height of %" PetscInt_FMT, a->sliceheight);
462:   for (i = 0; i < totalslices; i++) { /* loop over full slices */
463:     PetscPrefetchBlock(acolidx, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);
464:     PetscPrefetchBlock(aval, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);

466:     vec_y  = _mm256_setzero_pd();
467:     vec_y2 = _mm256_setzero_pd();

469:     /* last slice may have padding rows. Don't use vectorization. */
470:     if (i == totalslices - 1 && (A->rmap->n & 0x07)) {
471:       rows_left = A->rmap->n - 8 * i;
472:       for (r = 0; r < rows_left; ++r) {
473:         yval       = (MatScalar)0;
474:         row        = 8 * i + r;
475:         nnz_in_row = a->rlen[row];
476:         for (j = 0; j < nnz_in_row; ++j) yval += aval[8 * j + r] * x[acolidx[8 * j + r]];
477:         y[row] = yval;
478:       }
479:       break;
480:     }

482:   /* Process slice of height 8 (512 bits) via two subslices of height 4 (256 bits) via AVX */
483:   #pragma novector
484:   #pragma unroll(2)
485:     for (j = a->sliidx[i]; j < a->sliidx[i + 1]; j += 8) {
486:       vec_vals  = _mm256_loadu_pd(aval);
487:       vec_x_tmp = _mm_setzero_pd();
488:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
489:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
490:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 0);
491:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
492:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
493:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 1);
494:       vec_y     = _mm256_add_pd(_mm256_mul_pd(vec_x, vec_vals), vec_y);
495:       aval += 4;

497:       vec_vals  = _mm256_loadu_pd(aval);
498:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
499:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
500:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 0);
501:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
502:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
503:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 1);
504:       vec_y2    = _mm256_add_pd(_mm256_mul_pd(vec_x, vec_vals), vec_y2);
505:       aval += 4;
506:     }

508:     _mm256_storeu_pd(y + i * 8, vec_y);
509:     _mm256_storeu_pd(y + i * 8 + 4, vec_y2);
510:   }
511: #else
512:   PetscCall(PetscMalloc1(sliceheight, &sum));
513:   for (i = 0; i < totalslices; i++) { /* loop over slices */
514:     for (j = 0; j < sliceheight; j++) {
515:       sum[j] = 0.0;
516:       for (k = a->sliidx[i] + j; k < a->sliidx[i + 1]; k += sliceheight) sum[j] += aval[k] * x[acolidx[k]];
517:     }
518:     if (i == totalslices - 1 && (A->rmap->n % sliceheight)) { /* if last slice has padding rows */
519:       for (j = 0; j < (A->rmap->n % sliceheight); j++) y[sliceheight * i + j] = sum[j];
520:     } else {
521:       for (j = 0; j < sliceheight; j++) y[sliceheight * i + j] = sum[j];
522:     }
523:   }
524:   PetscCall(PetscFree(sum));
525: #endif

527:   PetscCall(PetscLogFlops(2.0 * a->nz - a->nonzerorowcnt)); /* theoretical minimal FLOPs */
528:   PetscCall(VecRestoreArrayRead(xx, &x));
529:   PetscCall(VecRestoreArray(yy, &y));
530:   PetscFunctionReturn(PETSC_SUCCESS);
531: }

533: #include <../src/mat/impls/aij/seq/ftn-kernels/fmultadd.h>
534: PetscErrorCode MatMultAdd_SeqSELL(Mat A, Vec xx, Vec yy, Vec zz)
535: {
536:   Mat_SeqSELL       *a = (Mat_SeqSELL *)A->data;
537:   PetscScalar       *y, *z;
538:   const PetscScalar *x;
539:   const MatScalar   *aval        = a->val;
540:   PetscInt           totalslices = a->totalslices;
541:   const PetscInt    *acolidx     = a->colidx;
542:   PetscInt           i, j;
543: #if PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX512F__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
544:   __m512d  vec_x, vec_y, vec_vals;
545:   __m256i  vec_idx;
546:   __mmask8 mask = 0;
547:   __m512d  vec_x2, vec_y2, vec_vals2, vec_x3, vec_y3, vec_vals3, vec_x4, vec_y4, vec_vals4;
548:   __m256i  vec_idx2, vec_idx3, vec_idx4;
549: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
550:   __m128d   vec_x_tmp;
551:   __m256d   vec_x, vec_y, vec_y2, vec_vals;
552:   MatScalar yval;
553:   PetscInt  r, row, nnz_in_row;
554: #else
555:   PetscInt     k, sliceheight = a->sliceheight;
556:   PetscScalar *sum;
557: #endif

559: #if PetscDefined(HAVE_PRAGMA_DISJOINT)
560:   #pragma disjoint(*x, *y, *aval)
561: #endif

563:   PetscFunctionBegin;
564:   if (!a->nz) {
565:     PetscCall(VecCopy(yy, zz));
566:     PetscFunctionReturn(PETSC_SUCCESS);
567:   }
568:   PetscCall(VecGetArrayRead(xx, &x));
569:   PetscCall(VecGetArrayPair(yy, zz, &y, &z));
570: #if PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX512F__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
571:   PetscCheck(a->sliceheight == 8, PETSC_COMM_SELF, PETSC_ERR_SUP, "The kernel requires a slice height of 8, but the input matrix has a slice height of %" PetscInt_FMT, a->sliceheight);
572:   for (i = 0; i < totalslices; i++) { /* loop over slices */
573:     PetscPrefetchBlock(acolidx, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);
574:     PetscPrefetchBlock(aval, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);

576:     if (i == totalslices - 1 && A->rmap->n & 0x07) { /* if last slice has padding rows */
577:       mask  = (__mmask8)(0xff >> (8 - (A->rmap->n & 0x07)));
578:       vec_y = _mm512_mask_loadu_pd(vec_y, mask, &y[8 * i]);
579:     } else {
580:       vec_y = _mm512_loadu_pd(&y[8 * i]);
581:     }
582:     vec_y2 = _mm512_setzero_pd();
583:     vec_y3 = _mm512_setzero_pd();
584:     vec_y4 = _mm512_setzero_pd();

586:     j = a->sliidx[i] >> 3; /* 8 bytes are read at each time, corresponding to a slice column */
587:     switch ((a->sliidx[i + 1] - a->sliidx[i]) / 8 & 3) {
588:     case 3:
589:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
590:       acolidx += 8;
591:       aval += 8;
592:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
593:       acolidx += 8;
594:       aval += 8;
595:       AVX512_Mult_Private(vec_idx3, vec_x3, vec_vals3, vec_y3);
596:       acolidx += 8;
597:       aval += 8;
598:       j += 3;
599:       break;
600:     case 2:
601:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
602:       acolidx += 8;
603:       aval += 8;
604:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
605:       acolidx += 8;
606:       aval += 8;
607:       j += 2;
608:       break;
609:     case 1:
610:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
611:       acolidx += 8;
612:       aval += 8;
613:       j += 1;
614:       break;
615:     }
616:   #pragma novector
617:     for (; j < (a->sliidx[i + 1] >> 3); j += 4) {
618:       AVX512_Mult_Private(vec_idx, vec_x, vec_vals, vec_y);
619:       acolidx += 8;
620:       aval += 8;
621:       AVX512_Mult_Private(vec_idx2, vec_x2, vec_vals2, vec_y2);
622:       acolidx += 8;
623:       aval += 8;
624:       AVX512_Mult_Private(vec_idx3, vec_x3, vec_vals3, vec_y3);
625:       acolidx += 8;
626:       aval += 8;
627:       AVX512_Mult_Private(vec_idx4, vec_x4, vec_vals4, vec_y4);
628:       acolidx += 8;
629:       aval += 8;
630:     }

632:     vec_y = _mm512_add_pd(vec_y, vec_y2);
633:     vec_y = _mm512_add_pd(vec_y, vec_y3);
634:     vec_y = _mm512_add_pd(vec_y, vec_y4);
635:     if (i == totalslices - 1 && A->rmap->n & 0x07) { /* if last slice has padding rows */
636:       _mm512_mask_storeu_pd(&z[8 * i], mask, vec_y);
637:     } else {
638:       _mm512_storeu_pd(&z[8 * i], vec_y);
639:     }
640:   }
641: #elif PetscDefined(HAVE_IMMINTRIN_H) && defined(__AVX__) && PetscDefined(USE_REAL_DOUBLE) && !PetscDefined(USE_COMPLEX) && !PetscDefined(USE_64BIT_INDICES)
642:   PetscCheck(a->sliceheight == 8, PETSC_COMM_SELF, PETSC_ERR_SUP, "The kernel requires a slice height of 8, but the input matrix has a slice height of %" PetscInt_FMT, a->sliceheight);
643:   for (i = 0; i < totalslices; i++) { /* loop over full slices */
644:     PetscPrefetchBlock(acolidx, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);
645:     PetscPrefetchBlock(aval, a->sliidx[i + 1] - a->sliidx[i], 0, PETSC_PREFETCH_HINT_T0);

647:     /* last slice may have padding rows. Don't use vectorization. */
648:     if (i == totalslices - 1 && (A->rmap->n & 0x07)) {
649:       for (r = 0; r < (A->rmap->n & 0x07); ++r) {
650:         row        = 8 * i + r;
651:         yval       = (MatScalar)0.0;
652:         nnz_in_row = a->rlen[row];
653:         for (j = 0; j < nnz_in_row; ++j) yval += aval[8 * j + r] * x[acolidx[8 * j + r]];
654:         z[row] = y[row] + yval;
655:       }
656:       break;
657:     }

659:     vec_y  = _mm256_loadu_pd(y + 8 * i);
660:     vec_y2 = _mm256_loadu_pd(y + 8 * i + 4);

662:     /* Process slice of height 8 (512 bits) via two subslices of height 4 (256 bits) via AVX */
663:     for (j = a->sliidx[i]; j < a->sliidx[i + 1]; j += 8) {
664:       vec_vals  = _mm256_loadu_pd(aval);
665:       vec_x_tmp = _mm_setzero_pd();
666:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
667:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
668:       vec_x     = _mm256_setzero_pd();
669:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 0);
670:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
671:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
672:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 1);
673:       vec_y     = _mm256_add_pd(_mm256_mul_pd(vec_x, vec_vals), vec_y);
674:       aval += 4;

676:       vec_vals  = _mm256_loadu_pd(aval);
677:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
678:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
679:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 0);
680:       vec_x_tmp = _mm_loadl_pd(vec_x_tmp, x + *acolidx++);
681:       vec_x_tmp = _mm_loadh_pd(vec_x_tmp, x + *acolidx++);
682:       vec_x     = _mm256_insertf128_pd(vec_x, vec_x_tmp, 1);
683:       vec_y2    = _mm256_add_pd(_mm256_mul_pd(vec_x, vec_vals), vec_y2);
684:       aval += 4;
685:     }

687:     _mm256_storeu_pd(z + i * 8, vec_y);
688:     _mm256_storeu_pd(z + i * 8 + 4, vec_y2);
689:   }
690: #else
691:   PetscCall(PetscMalloc1(sliceheight, &sum));
692:   for (i = 0; i < totalslices; i++) { /* loop over slices */
693:     for (j = 0; j < sliceheight; j++) {
694:       sum[j] = 0.0;
695:       for (k = a->sliidx[i] + j; k < a->sliidx[i + 1]; k += sliceheight) sum[j] += aval[k] * x[acolidx[k]];
696:     }
697:     if (i == totalslices - 1 && (A->rmap->n % sliceheight)) {
698:       for (j = 0; j < (A->rmap->n % sliceheight); j++) z[sliceheight * i + j] = y[sliceheight * i + j] + sum[j];
699:     } else {
700:       for (j = 0; j < sliceheight; j++) z[sliceheight * i + j] = y[sliceheight * i + j] + sum[j];
701:     }
702:   }
703:   PetscCall(PetscFree(sum));
704: #endif

706:   PetscCall(PetscLogFlops(2.0 * a->nz));
707:   PetscCall(VecRestoreArrayRead(xx, &x));
708:   PetscCall(VecRestoreArrayPair(yy, zz, &y, &z));
709:   PetscFunctionReturn(PETSC_SUCCESS);
710: }

712: PetscErrorCode MatMultTransposeAdd_SeqSELL(Mat A, Vec xx, Vec zz, Vec yy)
713: {
714:   Mat_SeqSELL       *a = (Mat_SeqSELL *)A->data;
715:   PetscScalar       *y;
716:   const PetscScalar *x;
717:   const MatScalar   *aval    = a->val;
718:   const PetscInt    *acolidx = a->colidx;
719:   PetscInt           i, j, r, row, nnz_in_row, totalslices = a->totalslices, sliceheight = a->sliceheight;

721: #if PetscDefined(HAVE_PRAGMA_DISJOINT)
722:   #pragma disjoint(*x, *y, *aval)
723: #endif

725:   PetscFunctionBegin;
726:   if (A->symmetric == PETSC_BOOL3_TRUE) {
727:     PetscCall(MatMultAdd_SeqSELL(A, xx, zz, yy));
728:     PetscFunctionReturn(PETSC_SUCCESS);
729:   }
730:   if (zz != yy) PetscCall(VecCopy(zz, yy));

732:   if (a->nz) {
733:     PetscCall(VecGetArrayRead(xx, &x));
734:     PetscCall(VecGetArray(yy, &y));
735:     for (i = 0; i < a->totalslices; i++) { /* loop over slices */
736:       if (i == totalslices - 1 && (A->rmap->n % sliceheight)) {
737:         for (r = 0; r < (A->rmap->n % sliceheight); ++r) {
738:           row        = sliceheight * i + r;
739:           nnz_in_row = a->rlen[row];
740:           for (j = 0; j < nnz_in_row; ++j) y[acolidx[sliceheight * j + r]] += aval[sliceheight * j + r] * x[row];
741:         }
742:         break;
743:       }
744:       for (r = 0; r < sliceheight; ++r)
745:         for (j = a->sliidx[i] + r; j < a->sliidx[i + 1]; j += sliceheight) y[acolidx[j]] += aval[j] * x[sliceheight * i + r];
746:     }
747:     PetscCall(PetscLogFlops(2.0 * a->nz));
748:     PetscCall(VecRestoreArrayRead(xx, &x));
749:     PetscCall(VecRestoreArray(yy, &y));
750:   }
751:   PetscFunctionReturn(PETSC_SUCCESS);
752: }

754: PetscErrorCode MatMultTranspose_SeqSELL(Mat A, Vec xx, Vec yy)
755: {
756:   PetscFunctionBegin;
757:   if (A->symmetric == PETSC_BOOL3_TRUE) {
758:     PetscCall(MatMult_SeqSELL(A, xx, yy));
759:   } else {
760:     PetscCall(VecSet(yy, 0.0));
761:     PetscCall(MatMultTransposeAdd_SeqSELL(A, xx, yy, yy));
762:   }
763:   PetscFunctionReturn(PETSC_SUCCESS);
764: }

766: static PetscErrorCode MatGetDiagonalMarkers_SeqSELL(Mat A, const PetscInt **diag, PetscBool *diagDense)
767: {
768:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

770:   PetscFunctionBegin;
771:   if (A->factortype != MAT_FACTOR_NONE) {
772:     PetscAssertPointer(diag, 2);
773:     PetscCheck(!diagDense, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot check for dense diagonal with factored matrices");
774:     *diag = a->diag;
775:     PetscFunctionReturn(PETSC_SUCCESS);
776:   }
777:   PetscCheck(diag || diagDense, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "At least one of diag or diagDense must be requested");
778:   if (a->diagNonzeroState != A->nonzerostate || (diag && !a->diag)) {
779:     const PetscInt m = A->rmap->n;
780:     PetscInt       shift;

782:     if (!diag && !a->diag) {
783:       a->diagDense = PETSC_TRUE;
784:       for (PetscInt i = 0; i < m; i++) {
785:         PetscBool found = PETSC_FALSE;

787:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
788:         for (PetscInt j = 0; j < a->rlen[i]; j++) {
789:           if (a->colidx[shift + a->sliceheight * j] == i) {
790:             a->diag[i] = shift + a->sliceheight * j;
791:             found      = PETSC_TRUE;
792:             break;
793:           }
794:         }
795:         if (!found) {
796:           a->diagDense        = PETSC_FALSE;
797:           *diagDense          = a->diagDense;
798:           a->diagNonzeroState = A->nonzerostate;
799:           PetscFunctionReturn(PETSC_SUCCESS);
800:         }
801:       }
802:     } else {
803:       if (!a->diag) PetscCall(PetscMalloc1(m, &a->diag));
804:       a->diagDense = PETSC_TRUE;
805:       for (PetscInt i = 0; i < m; i++) {
806:         PetscBool found = PETSC_FALSE;

808:         shift      = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
809:         a->diag[i] = -1;
810:         for (PetscInt j = 0; j < a->rlen[i]; j++) {
811:           if (a->colidx[shift + a->sliceheight * j] == i) {
812:             a->diag[i] = shift + a->sliceheight * j;
813:             found      = PETSC_TRUE;
814:             break;
815:           }
816:         }
817:         if (!found) a->diagDense = PETSC_FALSE;
818:       }
819:     }
820:     a->diagNonzeroState = A->nonzerostate;
821:   }
822:   if (diag) *diag = a->diag;
823:   if (diagDense) *diagDense = a->diagDense;
824:   PetscFunctionReturn(PETSC_SUCCESS);
825: }

827: /*
828:   Negative shift indicates do not generate an error if there is a zero diagonal, just invert it anyways
829: */
830: static PetscErrorCode MatInvertDiagonalForSOR_SeqSELL(Mat A, PetscScalar omega, PetscScalar fshift)
831: {
832:   Mat_SeqSELL    *a = (Mat_SeqSELL *)A->data;
833:   PetscInt        i, m = A->rmap->n;
834:   MatScalar      *val = a->val;
835:   PetscScalar    *idiag, *mdiag;
836:   const PetscInt *diag;
837:   PetscBool       diagDense;

839:   PetscFunctionBegin;
840:   if (a->idiagState == ((PetscObject)A)->state && a->omega == omega && a->fshift == fshift) PetscFunctionReturn(PETSC_SUCCESS);
841:   PetscCall(MatGetDiagonalMarkers_SeqSELL(A, &diag, &diagDense));
842:   PetscCheck(diagDense, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Matrix must have all diagonal locations to invert them");

844:   if (!a->idiag) {
845:     PetscCall(PetscMalloc3(m, &a->idiag, m, &a->mdiag, m, &a->ssor_work));
846:     val = a->val;
847:   }
848:   mdiag = a->mdiag;
849:   idiag = a->idiag;

851:   if (omega == 1.0 && PetscRealPart(fshift) <= 0.0) {
852:     for (i = 0; i < m; i++) {
853:       mdiag[i] = val[diag[i]];
854:       if (!PetscAbsScalar(mdiag[i])) { /* zero diagonal */
855:         PetscCheck(PetscRealPart(fshift), PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "Zero diagonal on row %" PetscInt_FMT, i);
856:         PetscCall(PetscInfo(A, "Zero diagonal on row %" PetscInt_FMT "\n", i));
857:         A->factorerrortype             = MAT_FACTOR_NUMERIC_ZEROPIVOT;
858:         A->factorerror_zeropivot_value = 0.0;
859:         A->factorerror_zeropivot_row   = i;
860:       }
861:       idiag[i] = 1.0 / val[diag[i]];
862:     }
863:     PetscCall(PetscLogFlops(m));
864:   } else {
865:     for (i = 0; i < m; i++) {
866:       mdiag[i] = val[diag[i]];
867:       idiag[i] = omega / (fshift + val[diag[i]]);
868:     }
869:     PetscCall(PetscLogFlops(2.0 * m));
870:   }
871:   a->idiagState = ((PetscObject)A)->state;
872:   a->omega      = omega;
873:   a->fshift     = fshift;
874:   PetscFunctionReturn(PETSC_SUCCESS);
875: }

877: PetscErrorCode MatZeroEntries_SeqSELL(Mat A)
878: {
879:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

881:   PetscFunctionBegin;
882:   PetscCall(PetscArrayzero(a->val, a->sliidx[a->totalslices]));
883:   PetscFunctionReturn(PETSC_SUCCESS);
884: }

886: PetscErrorCode MatDestroy_SeqSELL(Mat A)
887: {
888:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

890:   PetscFunctionBegin;
891:   PetscCall(PetscLogObjectState((PetscObject)A, "Rows=%" PetscInt_FMT ", Cols=%" PetscInt_FMT ", NZ=%" PetscInt_FMT, A->rmap->n, A->cmap->n, a->nz));
892:   PetscCall(MatSeqXSELLFreeSELL(A, &a->val, &a->colidx));
893:   PetscCall(ISDestroy(&a->row));
894:   PetscCall(ISDestroy(&a->col));
895:   PetscCall(PetscFree(a->diag));
896:   PetscCall(PetscFree(a->rlen));
897:   PetscCall(PetscFree(a->sliidx));
898:   PetscCall(PetscFree3(a->idiag, a->mdiag, a->ssor_work));
899:   PetscCall(PetscFree(a->solve_work));
900:   PetscCall(ISDestroy(&a->icol));
901:   PetscCall(PetscFree(a->saved_values));
902:   PetscCall(PetscFree2(a->getrowcols, a->getrowvals));
903:   PetscCall(PetscFree(A->data));
904: #if PetscDefined(HAVE_CUPM)
905:   PetscCall(PetscFree(a->chunk_slice_map));
906: #endif

908:   PetscCall(PetscObjectChangeTypeName((PetscObject)A, NULL));
909:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatStoreValues_C", NULL));
910:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatRetrieveValues_C", NULL));
911:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLSetPreallocation_C", NULL));
912:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLGetArray_C", NULL));
913:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLRestoreArray_C", NULL));
914:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatConvert_seqsell_seqaij_C", NULL));
915: #if PetscDefined(HAVE_CUDA)
916:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatConvert_seqsell_seqsellcuda_C", NULL));
917: #endif
918: #if PetscDefined(HAVE_HIP)
919:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatConvert_seqsell_seqsellhip_C", NULL));
920: #endif
921:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLGetFillRatio_C", NULL));
922:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLGetMaxSliceWidth_C", NULL));
923:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLGetAvgSliceWidth_C", NULL));
924:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLGetVarSliceSize_C", NULL));
925:   PetscCall(PetscObjectComposeFunction((PetscObject)A, "MatSeqSELLSetSliceHeight_C", NULL));
926:   PetscFunctionReturn(PETSC_SUCCESS);
927: }

929: PetscErrorCode MatSetOption_SeqSELL(Mat A, MatOption op, PetscBool flg)
930: {
931:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

933:   PetscFunctionBegin;
934:   switch (op) {
935:   case MAT_ROW_ORIENTED:
936:     a->roworiented = flg;
937:     break;
938:   case MAT_KEEP_NONZERO_PATTERN:
939:     a->keepnonzeropattern = flg;
940:     break;
941:   case MAT_NEW_NONZERO_LOCATIONS:
942:     a->nonew = (flg ? 0 : 1);
943:     break;
944:   case MAT_NEW_NONZERO_LOCATION_ERR:
945:     a->nonew = (flg ? -1 : 0);
946:     break;
947:   case MAT_NEW_NONZERO_ALLOCATION_ERR:
948:     a->nonew = (flg ? -2 : 0);
949:     break;
950:   case MAT_UNUSED_NONZERO_LOCATION_ERR:
951:     a->nounused = (flg ? -1 : 0);
952:     break;
953:   default:
954:     break;
955:   }
956:   PetscFunctionReturn(PETSC_SUCCESS);
957: }

959: PetscErrorCode MatGetDiagonal_SeqSELL(Mat A, Vec v)
960: {
961:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
962:   PetscInt     i, j, n, shift;
963:   PetscScalar *x, zero = 0.0;

965:   PetscFunctionBegin;
966:   PetscCall(VecGetLocalSize(v, &n));
967:   PetscCheck(n == A->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Nonconforming matrix and vector");

969:   if (A->factortype == MAT_FACTOR_ILU || A->factortype == MAT_FACTOR_LU) {
970:     const PetscInt *diag;

972:     PetscCall(MatGetDiagonalMarkers_SeqSELL(A, &diag, NULL));
973:     PetscCall(VecGetArrayWrite(v, &x));
974:     for (i = 0; i < n; i++) x[i] = 1.0 / a->val[diag[i]];
975:     PetscCall(VecRestoreArrayWrite(v, &x));
976:     PetscFunctionReturn(PETSC_SUCCESS);
977:   }

979:   PetscCall(VecSet(v, zero));
980:   PetscCall(VecGetArray(v, &x));
981:   for (i = 0; i < n; i++) {                                     /* loop over rows */
982:     shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
983:     x[i]  = 0;
984:     for (j = 0; j < a->rlen[i]; j++) {
985:       if (a->colidx[shift + a->sliceheight * j] == i) {
986:         x[i] = a->val[shift + a->sliceheight * j];
987:         break;
988:       }
989:     }
990:   }
991:   PetscCall(VecRestoreArray(v, &x));
992:   PetscFunctionReturn(PETSC_SUCCESS);
993: }

995: PetscErrorCode MatDiagonalScale_SeqSELL(Mat A, Vec ll, Vec rr)
996: {
997:   Mat_SeqSELL       *a = (Mat_SeqSELL *)A->data;
998:   const PetscScalar *l, *r;
999:   PetscInt           i, j, m, n, row;

1001:   PetscFunctionBegin;
1002:   if (ll) {
1003:     /* The local size is used so that VecMPI can be passed to this routine
1004:        by MatDiagonalScale_MPISELL */
1005:     PetscCall(VecGetLocalSize(ll, &m));
1006:     PetscCheck(m == A->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Left scaling vector wrong length");
1007:     PetscCall(VecGetArrayRead(ll, &l));
1008:     for (i = 0; i < a->totalslices; i++) {                            /* loop over slices */
1009:       if (i == a->totalslices - 1 && (A->rmap->n % a->sliceheight)) { /* if last slice has padding rows */
1010:         for (j = a->sliidx[i], row = 0; j < a->sliidx[i + 1]; j++, row = (row + 1) % a->sliceheight) {
1011:           if (row < (A->rmap->n % a->sliceheight)) a->val[j] *= l[a->sliceheight * i + row];
1012:         }
1013:       } else {
1014:         for (j = a->sliidx[i], row = 0; j < a->sliidx[i + 1]; j++, row = (row + 1) % a->sliceheight) a->val[j] *= l[a->sliceheight * i + row];
1015:       }
1016:     }
1017:     PetscCall(VecRestoreArrayRead(ll, &l));
1018:     PetscCall(PetscLogFlops(a->nz));
1019:   }
1020:   if (rr) {
1021:     PetscCall(VecGetLocalSize(rr, &n));
1022:     PetscCheck(n == A->cmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Right scaling vector wrong length");
1023:     PetscCall(VecGetArrayRead(rr, &r));
1024:     for (i = 0; i < a->totalslices; i++) {                            /* loop over slices */
1025:       if (i == a->totalslices - 1 && (A->rmap->n % a->sliceheight)) { /* if last slice has padding rows */
1026:         for (j = a->sliidx[i], row = 0; j < a->sliidx[i + 1]; j++, row = ((row + 1) % a->sliceheight)) {
1027:           if (row < (A->rmap->n % a->sliceheight)) a->val[j] *= r[a->colidx[j]];
1028:         }
1029:       } else {
1030:         for (j = a->sliidx[i]; j < a->sliidx[i + 1]; j++) a->val[j] *= r[a->colidx[j]];
1031:       }
1032:     }
1033:     PetscCall(VecRestoreArrayRead(rr, &r));
1034:     PetscCall(PetscLogFlops(a->nz));
1035:   }
1036: #if PetscDefined(HAVE_CUPM)
1037:   if (A->offloadmask != PETSC_OFFLOAD_UNALLOCATED) A->offloadmask = PETSC_OFFLOAD_CPU;
1038: #endif
1039:   PetscFunctionReturn(PETSC_SUCCESS);
1040: }

1042: PetscErrorCode MatGetValues_SeqSELL(Mat A, PetscInt m, const PetscInt im[], PetscInt n, const PetscInt in[], PetscScalar v[])
1043: {
1044:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
1045:   PetscInt    *cp, i, k, low, high, t, row, col, l;
1046:   PetscInt     shift;
1047:   MatScalar   *vp;
1048:   PetscBool    roworiented = a->roworiented;
1049:   PetscScalar *value;

1051:   PetscFunctionBegin;
1052:   for (k = 0; k < m; k++) { /* loop over requested rows */
1053:     row = im[k];
1054:     if (row < 0) continue;
1055:     PetscCheck(row < A->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Row too large: row %" PetscInt_FMT " max %" PetscInt_FMT, row, A->rmap->n - 1);
1056:     shift = a->sliidx[row / a->sliceheight] + (row % a->sliceheight); /* starting index of the row */
1057:     cp    = a->colidx + shift;                                        /* pointer to the row */
1058:     vp    = a->val + shift;                                           /* pointer to the row */
1059:     for (l = 0; l < n; l++) {                                         /* loop over requested columns */
1060:       col = in[l];
1061:       if (col < 0) continue;
1062:       PetscCheck(col < A->cmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Column too large: row %" PetscInt_FMT " max %" PetscInt_FMT, col, A->cmap->n - 1);
1063:       value = roworiented ? &v[l + k * n] : &v[k + l * m];
1064:       high  = a->rlen[row];
1065:       low   = 0; /* assume unsorted */
1066:       while (high - low > 5) {
1067:         t = (low + high) / 2;
1068:         if (*(cp + a->sliceheight * t) > col) high = t;
1069:         else low = t;
1070:       }
1071:       for (i = low; i < high; i++) {
1072:         if (*(cp + a->sliceheight * i) > col) break;
1073:         if (*(cp + a->sliceheight * i) == col) {
1074:           *value = *(vp + a->sliceheight * i);
1075:           goto finished;
1076:         }
1077:       }
1078:       *value = 0.0;
1079:     finished:;
1080:     }
1081:   }
1082:   PetscFunctionReturn(PETSC_SUCCESS);
1083: }

1085: static PetscErrorCode MatView_SeqSELL_ASCII(Mat A, PetscViewer viewer)
1086: {
1087:   Mat_SeqSELL      *a = (Mat_SeqSELL *)A->data;
1088:   PetscInt          i, j, m = A->rmap->n, shift;
1089:   const char       *name;
1090:   PetscViewerFormat format;

1092:   PetscFunctionBegin;
1093:   PetscCall(PetscViewerGetFormat(viewer, &format));
1094:   if (format == PETSC_VIEWER_ASCII_MATLAB) {
1095:     PetscInt nofinalvalue = 0;
1096:     /*
1097:     if (m && ((a->i[m] == a->i[m-1]) || (a->j[a->nz-1] != A->cmap->n-1))) nofinalvalue = 1;
1098:     */
1099:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_FALSE));
1100:     PetscCall(PetscViewerASCIIPrintf(viewer, "%% Size = %" PetscInt_FMT " %" PetscInt_FMT " \n", m, A->cmap->n));
1101:     PetscCall(PetscViewerASCIIPrintf(viewer, "%% Nonzeros = %" PetscInt_FMT " \n", a->nz));
1102:     PetscCall(PetscViewerASCIIPrintf(viewer, "zzz = zeros(%" PetscInt_FMT ",%d);\n", a->nz + nofinalvalue, PetscDefined(USE_COMPLEX) ? 4 : 3));
1103:     PetscCall(PetscViewerASCIIPrintf(viewer, "zzz = [\n"));

1105:     for (i = 0; i < m; i++) {
1106:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1107:       for (j = 0; j < a->rlen[i]; j++) {
1108: #if PetscDefined(USE_COMPLEX)
1109:         PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e %18.16e\n", i + 1, a->colidx[shift + a->sliceheight * j] + 1, (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1110: #else
1111:         PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e\n", i + 1, a->colidx[shift + a->sliceheight * j] + 1, (double)a->val[shift + a->sliceheight * j]));
1112: #endif
1113:       }
1114:     }
1115:     /*
1116:     if (nofinalvalue) {
1117: #if PetscDefined(USE_COMPLEX)
1118:       PetscCall(PetscViewerASCIIPrintf(viewer,"%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e %18.16e\n",m,A->cmap->n,0.,0.));
1119: #else
1120:       PetscCall(PetscViewerASCIIPrintf(viewer,"%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e\n",m,A->cmap->n,0.0));
1121: #endif
1122:     }
1123:     */
1124:     PetscCall(PetscObjectGetName((PetscObject)A, &name));
1125:     PetscCall(PetscViewerASCIIPrintf(viewer, "];\n %s = spconvert(zzz);\n", name));
1126:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_TRUE));
1127:   } else if (format == PETSC_VIEWER_ASCII_FACTOR_INFO || format == PETSC_VIEWER_ASCII_INFO) {
1128:     PetscFunctionReturn(PETSC_SUCCESS);
1129:   } else if (format == PETSC_VIEWER_ASCII_COMMON) {
1130:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_FALSE));
1131:     for (i = 0; i < m; i++) {
1132:       PetscCall(PetscViewerASCIIPrintf(viewer, "row %" PetscInt_FMT ":", i));
1133:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1134:       for (j = 0; j < a->rlen[i]; j++) {
1135: #if PetscDefined(USE_COMPLEX)
1136:         if (PetscImaginaryPart(a->val[shift + a->sliceheight * j]) > 0.0 && PetscRealPart(a->val[shift + a->sliceheight * j]) != 0.0) {
1137:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g + %g i)", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1138:         } else if (PetscImaginaryPart(a->val[shift + a->sliceheight * j]) < 0.0 && PetscRealPart(a->val[shift + a->sliceheight * j]) != 0.0) {
1139:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g - %g i)", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)-PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1140:         } else if (PetscRealPart(a->val[shift + a->sliceheight * j]) != 0.0) {
1141:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j])));
1142:         }
1143: #else
1144:         if (a->val[shift + a->sliceheight * j] != 0.0) PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[shift + a->sliceheight * j], (double)a->val[shift + a->sliceheight * j]));
1145: #endif
1146:       }
1147:       PetscCall(PetscViewerASCIIPrintf(viewer, "\n"));
1148:     }
1149:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_TRUE));
1150:   } else if (format == PETSC_VIEWER_ASCII_DENSE) {
1151:     PetscInt    cnt = 0, jcnt;
1152:     PetscScalar value;
1153:     PetscBool   realonly = PETSC_TRUE;

1155:     if (PetscDefined(USE_COMPLEX)) {
1156:       for (i = 0; i < a->sliidx[a->totalslices]; i++) {
1157:         if (PetscImaginaryPart(a->val[i]) != 0.0) {
1158:           realonly = PETSC_FALSE;
1159:           break;
1160:         }
1161:       }
1162:     }

1164:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_FALSE));
1165:     for (i = 0; i < m; i++) {
1166:       jcnt  = 0;
1167:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1168:       for (j = 0; j < A->cmap->n; j++) {
1169:         if (jcnt < a->rlen[i] && j == a->colidx[shift + a->sliceheight * j]) {
1170:           value = a->val[cnt++];
1171:           jcnt++;
1172:         } else {
1173:           value = 0.0;
1174:         }
1175:         if (!PetscDefined(USE_COMPLEX) || realonly) {
1176:           PetscCall(PetscViewerASCIIPrintf(viewer, " %7.5e ", (double)PetscRealPart(value)));
1177:         } else {
1178:           PetscCall(PetscViewerASCIIPrintf(viewer, " %7.5e+%7.5e i ", (double)PetscRealPart(value), (double)PetscImaginaryPart(value)));
1179:         }
1180:       }
1181:       PetscCall(PetscViewerASCIIPrintf(viewer, "\n"));
1182:     }
1183:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_TRUE));
1184:   } else if (format == PETSC_VIEWER_ASCII_MATRIXMARKET) {
1185:     PetscInt fshift = 1;
1186:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_FALSE));
1187:     PetscCall(PetscViewerASCIIPrintf(viewer, "%%%%MatrixMarket matrix coordinate %s general\n", PetscDefined(USE_COMPLEX) ? "complex" : "real"));
1188:     PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT "\n", m, A->cmap->n, a->nz));
1189:     for (i = 0; i < m; i++) {
1190:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1191:       for (j = 0; j < a->rlen[i]; j++) {
1192: #if PetscDefined(USE_COMPLEX)
1193:         PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " %" PetscInt_FMT " %g %g\n", i + fshift, a->colidx[shift + a->sliceheight * j] + fshift, (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1194: #else
1195:         PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " %" PetscInt_FMT " %g\n", i + fshift, a->colidx[shift + a->sliceheight * j] + fshift, (double)a->val[shift + a->sliceheight * j]));
1196: #endif
1197:       }
1198:     }
1199:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_TRUE));
1200:   } else if (format == PETSC_VIEWER_NATIVE) {
1201:     for (i = 0; i < a->totalslices; i++) { /* loop over slices */
1202:       PetscInt row;
1203:       PetscCall(PetscViewerASCIIPrintf(viewer, "slice %" PetscInt_FMT ": %" PetscInt_FMT " %" PetscInt_FMT "\n", i, a->sliidx[i], a->sliidx[i + 1]));
1204:       for (j = a->sliidx[i], row = 0; j < a->sliidx[i + 1]; j++, row = (row + 1) % a->sliceheight) {
1205:         if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) > 0.0) {
1206:           PetscCall(PetscViewerASCIIPrintf(viewer, "  %" PetscInt_FMT " %" PetscInt_FMT " %g + %g i\n", a->sliceheight * i + row, a->colidx[j], (double)PetscRealPart(a->val[j]), (double)PetscImaginaryPart(a->val[j])));
1207:         } else if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) < 0.0) {
1208:           PetscCall(PetscViewerASCIIPrintf(viewer, "  %" PetscInt_FMT " %" PetscInt_FMT " %g - %g i\n", a->sliceheight * i + row, a->colidx[j], (double)PetscRealPart(a->val[j]), -(double)PetscImaginaryPart(a->val[j])));
1209:         } else {
1210:           PetscCall(PetscViewerASCIIPrintf(viewer, "  %" PetscInt_FMT " %" PetscInt_FMT " %g\n", a->sliceheight * i + row, a->colidx[j], (double)PetscRealPart(a->val[j])));
1211:         }
1212:       }
1213:     }
1214:   } else {
1215:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_FALSE));
1216:     if (A->factortype) {
1217:       for (i = 0; i < m; i++) {
1218:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1219:         PetscCall(PetscViewerASCIIPrintf(viewer, "row %" PetscInt_FMT ":", i));
1220:         /* L part */
1221:         for (j = shift; j < a->diag[i]; j += a->sliceheight) {
1222:           if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[shift + a->sliceheight * j]) > 0.0) {
1223:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g + %g i)", a->colidx[j], (double)PetscRealPart(a->val[j]), (double)PetscImaginaryPart(a->val[j])));
1224:           } else if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[shift + a->sliceheight * j]) < 0.0) {
1225:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g - %g i)", a->colidx[j], (double)PetscRealPart(a->val[j]), (double)(-PetscImaginaryPart(a->val[j]))));
1226:           } else {
1227:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[j], (double)PetscRealPart(a->val[j])));
1228:           }
1229:         }
1230:         /* diagonal */
1231:         j = a->diag[i];
1232:         if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) > 0.0) {
1233:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g + %g i)", a->colidx[j], (double)PetscRealPart(1.0 / a->val[j]), (double)PetscImaginaryPart(1.0 / a->val[j])));
1234:         } else if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) < 0.0) {
1235:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g - %g i)", a->colidx[j], (double)PetscRealPart(1.0 / a->val[j]), (double)(-PetscImaginaryPart(1.0 / a->val[j]))));
1236:         } else {
1237:           PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[j], (double)PetscRealPart(1.0 / a->val[j])));
1238:         }

1240:         /* U part */
1241:         for (j = a->diag[i] + 1; j < shift + a->sliceheight * a->rlen[i]; j += a->sliceheight) {
1242:           if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) > 0.0) {
1243:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g + %g i)", a->colidx[j], (double)PetscRealPart(a->val[j]), (double)PetscImaginaryPart(a->val[j])));
1244:           } else if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) < 0.0) {
1245:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g - %g i)", a->colidx[j], (double)PetscRealPart(a->val[j]), (double)(-PetscImaginaryPart(a->val[j]))));
1246:           } else {
1247:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[j], (double)PetscRealPart(a->val[j])));
1248:           }
1249:         }
1250:         PetscCall(PetscViewerASCIIPrintf(viewer, "\n"));
1251:       }
1252:     } else {
1253:       for (i = 0; i < m; i++) {
1254:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1255:         PetscCall(PetscViewerASCIIPrintf(viewer, "row %" PetscInt_FMT ":", i));
1256:         for (j = 0; j < a->rlen[i]; j++) {
1257:           if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) > 0.0) {
1258:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g + %g i)", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1259:           } else if (PetscDefined(USE_COMPLEX) && PetscImaginaryPart(a->val[j]) < 0.0) {
1260:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g - %g i)", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j]), (double)-PetscImaginaryPart(a->val[shift + a->sliceheight * j])));
1261:           } else {
1262:             PetscCall(PetscViewerASCIIPrintf(viewer, " (%" PetscInt_FMT ", %g) ", a->colidx[shift + a->sliceheight * j], (double)PetscRealPart(a->val[shift + a->sliceheight * j])));
1263:           }
1264:         }
1265:         PetscCall(PetscViewerASCIIPrintf(viewer, "\n"));
1266:       }
1267:     }
1268:     PetscCall(PetscViewerASCIIUseTabs(viewer, PETSC_TRUE));
1269:   }
1270:   PetscCall(PetscViewerFlush(viewer));
1271:   PetscFunctionReturn(PETSC_SUCCESS);
1272: }

1274: #include <petscdraw.h>
1275: static PetscErrorCode MatView_SeqSELL_Draw_Zoom(PetscDraw draw, void *Aa)
1276: {
1277:   Mat               A = (Mat)Aa;
1278:   Mat_SeqSELL      *a = (Mat_SeqSELL *)A->data;
1279:   PetscInt          i, j, m = A->rmap->n, shift;
1280:   int               color;
1281:   PetscReal         xl, yl, xr, yr, x_l, x_r, y_l, y_r;
1282:   PetscViewer       viewer;
1283:   PetscViewerFormat format;

1285:   PetscFunctionBegin;
1286:   PetscCall(PetscObjectQuery((PetscObject)A, "Zoomviewer", (PetscObject *)&viewer));
1287:   PetscCall(PetscViewerGetFormat(viewer, &format));
1288:   PetscCall(PetscDrawGetCoordinates(draw, &xl, &yl, &xr, &yr));

1290:   /* loop over matrix elements drawing boxes */

1292:   if (format != PETSC_VIEWER_DRAW_CONTOUR) {
1293:     PetscDrawCollectiveBegin(draw);
1294:     /* Blue for negative, Cyan for zero and  Red for positive */
1295:     color = PETSC_DRAW_BLUE;
1296:     for (i = 0; i < m; i++) {
1297:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
1298:       y_l   = m - i - 1.0;
1299:       y_r   = y_l + 1.0;
1300:       for (j = 0; j < a->rlen[i]; j++) {
1301:         x_l = a->colidx[shift + a->sliceheight * j];
1302:         x_r = x_l + 1.0;
1303:         if (PetscRealPart(a->val[shift + a->sliceheight * j]) >= 0.) continue;
1304:         PetscCall(PetscDrawRectangle(draw, x_l, y_l, x_r, y_r, color, color, color, color));
1305:       }
1306:     }
1307:     color = PETSC_DRAW_CYAN;
1308:     for (i = 0; i < m; i++) {
1309:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1310:       y_l   = m - i - 1.0;
1311:       y_r   = y_l + 1.0;
1312:       for (j = 0; j < a->rlen[i]; j++) {
1313:         x_l = a->colidx[shift + a->sliceheight * j];
1314:         x_r = x_l + 1.0;
1315:         if (a->val[shift + a->sliceheight * j] != 0.) continue;
1316:         PetscCall(PetscDrawRectangle(draw, x_l, y_l, x_r, y_r, color, color, color, color));
1317:       }
1318:     }
1319:     color = PETSC_DRAW_RED;
1320:     for (i = 0; i < m; i++) {
1321:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1322:       y_l   = m - i - 1.0;
1323:       y_r   = y_l + 1.0;
1324:       for (j = 0; j < a->rlen[i]; j++) {
1325:         x_l = a->colidx[shift + a->sliceheight * j];
1326:         x_r = x_l + 1.0;
1327:         if (PetscRealPart(a->val[shift + a->sliceheight * j]) <= 0.) continue;
1328:         PetscCall(PetscDrawRectangle(draw, x_l, y_l, x_r, y_r, color, color, color, color));
1329:       }
1330:     }
1331:     PetscDrawCollectiveEnd(draw);
1332:   } else {
1333:     /* use contour shading to indicate magnitude of values */
1334:     /* first determine max of all nonzero values */
1335:     PetscReal minv = 0.0, maxv = 0.0;
1336:     PetscInt  count = 0;
1337:     PetscDraw popup;
1338:     for (i = 0; i < a->sliidx[a->totalslices]; i++) {
1339:       if (PetscAbsScalar(a->val[i]) > maxv) maxv = PetscAbsScalar(a->val[i]);
1340:     }
1341:     if (minv >= maxv) maxv = minv + PETSC_SMALL;
1342:     PetscCall(PetscDrawGetPopup(draw, &popup));
1343:     PetscCall(PetscDrawScalePopup(popup, minv, maxv));

1345:     PetscDrawCollectiveBegin(draw);
1346:     for (i = 0; i < m; i++) {
1347:       shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight;
1348:       y_l   = m - i - 1.0;
1349:       y_r   = y_l + 1.0;
1350:       for (j = 0; j < a->rlen[i]; j++) {
1351:         x_l   = a->colidx[shift + a->sliceheight * j];
1352:         x_r   = x_l + 1.0;
1353:         color = PetscDrawRealToColor(PetscAbsScalar(a->val[count]), minv, maxv);
1354:         PetscCall(PetscDrawRectangle(draw, x_l, y_l, x_r, y_r, color, color, color, color));
1355:         count++;
1356:       }
1357:     }
1358:     PetscDrawCollectiveEnd(draw);
1359:   }
1360:   PetscFunctionReturn(PETSC_SUCCESS);
1361: }

1363: #include <petscdraw.h>
1364: static PetscErrorCode MatView_SeqSELL_Draw(Mat A, PetscViewer viewer)
1365: {
1366:   PetscDraw draw;
1367:   PetscReal xr, yr, xl, yl, h, w;
1368:   PetscBool isnull;

1370:   PetscFunctionBegin;
1371:   PetscCall(PetscViewerDrawGetDraw(viewer, 0, &draw));
1372:   PetscCall(PetscDrawIsNull(draw, &isnull));
1373:   if (isnull) PetscFunctionReturn(PETSC_SUCCESS);

1375:   xr = A->cmap->n;
1376:   yr = A->rmap->n;
1377:   h  = yr / 10.0;
1378:   w  = xr / 10.0;
1379:   xr += w;
1380:   yr += h;
1381:   xl = -w;
1382:   yl = -h;
1383:   PetscCall(PetscDrawSetCoordinates(draw, xl, yl, xr, yr));
1384:   PetscCall(PetscObjectCompose((PetscObject)A, "Zoomviewer", (PetscObject)viewer));
1385:   PetscCall(PetscDrawZoom(draw, MatView_SeqSELL_Draw_Zoom, A));
1386:   PetscCall(PetscObjectCompose((PetscObject)A, "Zoomviewer", NULL));
1387:   PetscCall(PetscDrawSave(draw));
1388:   PetscFunctionReturn(PETSC_SUCCESS);
1389: }

1391: PetscErrorCode MatView_SeqSELL(Mat A, PetscViewer viewer)
1392: {
1393:   PetscBool isascii, isbinary, isdraw;

1395:   PetscFunctionBegin;
1396:   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERASCII, &isascii));
1397:   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERBINARY, &isbinary));
1398:   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERDRAW, &isdraw));
1399:   if (isascii) {
1400:     PetscCall(MatView_SeqSELL_ASCII(A, viewer));
1401:   } else if (isbinary) {
1402:     /* PetscCall(MatView_SeqSELL_Binary(A,viewer)); */
1403:   } else if (isdraw) PetscCall(MatView_SeqSELL_Draw(A, viewer));
1404:   PetscFunctionReturn(PETSC_SUCCESS);
1405: }

1407: PetscErrorCode MatAssemblyEnd_SeqSELL(Mat A, MatAssemblyType mode)
1408: {
1409:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
1410:   PetscInt     i, shift, row_in_slice, row, nrow, *cp, lastcol, j, k;
1411:   MatScalar   *vp;
1412: #if PetscDefined(HAVE_CUPM)
1413:   PetscInt totalchunks = 0;
1414: #endif

1416:   PetscFunctionBegin;
1417:   if (mode == MAT_FLUSH_ASSEMBLY) PetscFunctionReturn(PETSC_SUCCESS);
1418:   /* To do: compress out the unused elements */
1419:   PetscCall(PetscInfo(A, "Matrix size: %" PetscInt_FMT " X %" PetscInt_FMT "; storage space: %" PetscInt_FMT " allocated %" PetscInt_FMT " used (%" PetscInt_FMT " nonzeros+%" PetscInt_FMT " paddedzeros)\n", A->rmap->n, A->cmap->n, a->maxallocmat, a->sliidx[a->totalslices], a->nz, a->sliidx[a->totalslices] - a->nz));
1420:   PetscCall(PetscInfo(A, "Number of mallocs during MatSetValues() is %" PetscInt_FMT "\n", a->reallocs));
1421:   PetscCall(PetscInfo(A, "Maximum nonzeros in any row is %" PetscInt_FMT "\n", a->rlenmax));
1422:   a->nonzerorowcnt = 0;
1423:   /* Set unused slots for column indices to last valid column index. Set unused slots for values to zero. This allows for a use of unmasked intrinsics -> higher performance */
1424:   for (i = 0; i < a->totalslices; ++i) {
1425:     shift = a->sliidx[i];                                                   /* starting index of the slice */
1426:     cp    = PetscSafePointerPlusOffset(a->colidx, shift);                   /* pointer to the column indices of the slice */
1427:     vp    = PetscSafePointerPlusOffset(a->val, shift);                      /* pointer to the nonzero values of the slice */
1428:     for (row_in_slice = 0; row_in_slice < a->sliceheight; ++row_in_slice) { /* loop over rows in the slice */
1429:       row  = a->sliceheight * i + row_in_slice;
1430:       nrow = a->rlen[row]; /* number of nonzeros in row */
1431:       /*
1432:         Search for the nearest nonzero. Normally setting the index to zero may cause extra communication.
1433:         But if the entire slice are empty, it is fine to use 0 since the index will not be loaded.
1434:       */
1435:       lastcol = 0;
1436:       if (nrow > 0) { /* nonempty row */
1437:         a->nonzerorowcnt++;
1438:         lastcol = cp[a->sliceheight * (nrow - 1) + row_in_slice]; /* use the index from the last nonzero at current row */
1439:       } else if (!row_in_slice) {                                 /* first row of the correct slice is empty */
1440:         for (j = 1; j < a->sliceheight; j++) {
1441:           if (a->rlen[a->sliceheight * i + j]) {
1442:             lastcol = cp[j];
1443:             break;
1444:           }
1445:         }
1446:       } else {
1447:         if (a->sliidx[i + 1] != shift) lastcol = cp[row_in_slice - 1]; /* use the index from the previous row */
1448:       }

1450:       for (k = nrow; k < (a->sliidx[i + 1] - shift) / a->sliceheight; ++k) {
1451:         cp[a->sliceheight * k + row_in_slice] = lastcol;
1452:         vp[a->sliceheight * k + row_in_slice] = (MatScalar)0;
1453:       }
1454:     }
1455:   }

1457:   A->info.mallocs += a->reallocs;
1458:   a->reallocs = 0;

1460: #if PetscDefined(HAVE_CUPM)
1461:   if (!a->chunksize && a->totalslices) {
1462:     a->chunksize = 64;
1463:     while (a->chunksize < 1024 && 2 * a->chunksize <= a->sliidx[a->totalslices] / a->totalslices) a->chunksize *= 2;
1464:     totalchunks = 1 + (a->sliidx[a->totalslices] - 1) / a->chunksize;
1465:   }
1466:   if (totalchunks != a->totalchunks) {
1467:     PetscCall(PetscFree(a->chunk_slice_map));
1468:     PetscCall(PetscMalloc1(totalchunks, &a->chunk_slice_map));
1469:     a->totalchunks = totalchunks;
1470:   }
1471:   j = 0;
1472:   for (i = 0; i < totalchunks; i++) {
1473:     while (a->sliidx[j + 1] <= i * a->chunksize && j < a->totalslices) j++;
1474:     a->chunk_slice_map[i] = j;
1475:   }
1476: #endif
1477:   PetscFunctionReturn(PETSC_SUCCESS);
1478: }

1480: PetscErrorCode MatGetInfo_SeqSELL(Mat A, MatInfoType flag, MatInfo *info)
1481: {
1482:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

1484:   PetscFunctionBegin;
1485:   info->block_size   = 1.0;
1486:   info->nz_allocated = a->maxallocmat;
1487:   info->nz_used      = a->sliidx[a->totalslices]; /* include padding zeros */
1488:   info->nz_unneeded  = (a->maxallocmat - a->sliidx[a->totalslices]);
1489:   info->assemblies   = A->num_ass;
1490:   info->mallocs      = A->info.mallocs;
1491:   info->memory       = 0; /* REVIEW ME */
1492:   if (A->factortype) {
1493:     info->fill_ratio_given  = A->info.fill_ratio_given;
1494:     info->fill_ratio_needed = A->info.fill_ratio_needed;
1495:     info->factor_mallocs    = A->info.factor_mallocs;
1496:   } else {
1497:     info->fill_ratio_given  = 0;
1498:     info->fill_ratio_needed = 0;
1499:     info->factor_mallocs    = 0;
1500:   }
1501:   PetscFunctionReturn(PETSC_SUCCESS);
1502: }

1504: PetscErrorCode MatSetValues_SeqSELL(Mat A, PetscInt m, const PetscInt im[], PetscInt n, const PetscInt in[], const PetscScalar v[], InsertMode is)
1505: {
1506:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
1507:   PetscInt     shift, i, k, l, low, high, t, ii, row, col, nrow;
1508:   PetscInt    *cp, nonew = a->nonew, lastcol = -1;
1509:   MatScalar   *vp, value;
1510: #if PetscDefined(HAVE_CUPM)
1511:   PetscBool inserted = PETSC_FALSE;
1512:   PetscInt  mul      = DEVICE_MEM_ALIGN / a->sliceheight;
1513: #endif

1515:   PetscFunctionBegin;
1516:   for (k = 0; k < m; k++) { /* loop over added rows */
1517:     row = im[k];
1518:     if (row < 0) continue;
1519:     PetscCheck(row < A->rmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Row too large: row %" PetscInt_FMT " max %" PetscInt_FMT, row, A->rmap->n - 1);
1520:     shift = a->sliidx[row / a->sliceheight] + row % a->sliceheight; /* starting index of the row */
1521:     cp    = a->colidx + shift;                                      /* pointer to the row */
1522:     vp    = a->val + shift;                                         /* pointer to the row */
1523:     nrow  = a->rlen[row];
1524:     low   = 0;
1525:     high  = nrow;

1527:     for (l = 0; l < n; l++) { /* loop over added columns */
1528:       col = in[l];
1529:       if (col < 0) continue;
1530:       PetscCheck(col < A->cmap->n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Col too large: row %" PetscInt_FMT " max %" PetscInt_FMT, col, A->cmap->n - 1);
1531:       if (a->roworiented) {
1532:         value = v[l + k * n];
1533:       } else {
1534:         value = v[k + l * m];
1535:       }
1536:       if ((value == 0.0 && a->ignorezeroentries) && (is == ADD_VALUES)) continue;

1538:       /* search in this row for the specified column, i indicates the column to be set */
1539:       if (col <= lastcol) low = 0;
1540:       else high = nrow;
1541:       lastcol = col;
1542:       while (high - low > 5) {
1543:         t = (low + high) / 2;
1544:         if (*(cp + a->sliceheight * t) > col) high = t;
1545:         else low = t;
1546:       }
1547:       for (i = low; i < high; i++) {
1548:         if (*(cp + a->sliceheight * i) > col) break;
1549:         if (*(cp + a->sliceheight * i) == col) {
1550:           if (is == ADD_VALUES) *(vp + a->sliceheight * i) += value;
1551:           else *(vp + a->sliceheight * i) = value;
1552: #if PetscDefined(HAVE_CUPM)
1553:           inserted = PETSC_TRUE;
1554: #endif
1555:           low = i + 1;
1556:           goto noinsert;
1557:         }
1558:       }
1559:       if (value == 0.0 && a->ignorezeroentries) goto noinsert;
1560:       if (nonew == 1) goto noinsert;
1561:       PetscCheck(nonew != -1, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Inserting a new nonzero (%" PetscInt_FMT ", %" PetscInt_FMT ") in the matrix", row, col);
1562: #if PetscDefined(HAVE_CUPM)
1563:       MatSeqXSELLReallocateSELL(A, A->rmap->n, 1, nrow, a->sliidx, a->sliceheight, row / a->sliceheight, row, col, a->colidx, a->val, cp, vp, nonew, MatScalar, mul);
1564: #else
1565:       /* If the current row length exceeds the slice width (e.g. nrow==slice_width), allocate a new space, otherwise do nothing */
1566:       MatSeqXSELLReallocateSELL(A, A->rmap->n, 1, nrow, a->sliidx, a->sliceheight, row / a->sliceheight, row, col, a->colidx, a->val, cp, vp, nonew, MatScalar, 1);
1567: #endif
1568:       /* add the new nonzero to the high position, shift the remaining elements in current row to the right by one slot */
1569:       for (ii = nrow - 1; ii >= i; ii--) {
1570:         *(cp + a->sliceheight * (ii + 1)) = *(cp + a->sliceheight * ii);
1571:         *(vp + a->sliceheight * (ii + 1)) = *(vp + a->sliceheight * ii);
1572:       }
1573:       a->rlen[row]++;
1574:       *(cp + a->sliceheight * i) = col;
1575:       *(vp + a->sliceheight * i) = value;
1576:       a->nz++;
1577: #if PetscDefined(HAVE_CUPM)
1578:       inserted = PETSC_TRUE;
1579: #endif
1580:       low = i + 1;
1581:       high++;
1582:       nrow++;
1583:     noinsert:;
1584:     }
1585:     a->rlen[row] = nrow;
1586:   }
1587: #if PetscDefined(HAVE_CUPM)
1588:   if (A->offloadmask != PETSC_OFFLOAD_UNALLOCATED && inserted) A->offloadmask = PETSC_OFFLOAD_CPU;
1589: #endif
1590:   PetscFunctionReturn(PETSC_SUCCESS);
1591: }

1593: PetscErrorCode MatCopy_SeqSELL(Mat A, Mat B, MatStructure str)
1594: {
1595:   PetscFunctionBegin;
1596:   /* If the two matrices have the same copy implementation, use fast copy. */
1597:   if (str == SAME_NONZERO_PATTERN && (A->ops->copy == B->ops->copy)) {
1598:     Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;
1599:     Mat_SeqSELL *b = (Mat_SeqSELL *)B->data;

1601:     PetscCheck(a->sliidx[a->totalslices] == b->sliidx[b->totalslices], PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "Number of nonzeros in two matrices are different");
1602:     PetscCall(PetscArraycpy(b->val, a->val, a->sliidx[a->totalslices]));
1603:   } else {
1604:     PetscCall(MatCopy_Basic(A, B, str));
1605:   }
1606:   PetscFunctionReturn(PETSC_SUCCESS);
1607: }

1609: PetscErrorCode MatSetUp_SeqSELL(Mat A)
1610: {
1611:   PetscFunctionBegin;
1612:   PetscCall(MatSeqSELLSetPreallocation(A, PETSC_DEFAULT, NULL));
1613:   PetscFunctionReturn(PETSC_SUCCESS);
1614: }

1616: PetscErrorCode MatSeqSELLGetArray_SeqSELL(Mat A, PetscScalar *array[])
1617: {
1618:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

1620:   PetscFunctionBegin;
1621:   *array = a->val;
1622:   PetscFunctionReturn(PETSC_SUCCESS);
1623: }

1625: PetscErrorCode MatSeqSELLRestoreArray_SeqSELL(Mat A, PetscScalar *array[])
1626: {
1627:   PetscFunctionBegin;
1628:   PetscFunctionReturn(PETSC_SUCCESS);
1629: }

1631: PetscErrorCode MatScale_SeqSELL(Mat inA, PetscScalar alpha)
1632: {
1633:   Mat_SeqSELL *a      = (Mat_SeqSELL *)inA->data;
1634:   MatScalar   *aval   = a->val;
1635:   PetscScalar  oalpha = alpha;
1636:   PetscBLASInt one    = 1, size;

1638:   PetscFunctionBegin;
1639:   PetscCall(PetscBLASIntCast(a->sliidx[a->totalslices], &size));
1640:   PetscCallBLAS("BLASscal", BLASscal_(&size, &oalpha, aval, &one));
1641:   PetscCall(PetscLogFlops(a->nz));
1642: #if PetscDefined(HAVE_CUPM)
1643:   if (inA->offloadmask != PETSC_OFFLOAD_UNALLOCATED) inA->offloadmask = PETSC_OFFLOAD_CPU;
1644: #endif
1645:   PetscFunctionReturn(PETSC_SUCCESS);
1646: }

1648: PetscErrorCode MatShift_SeqSELL(Mat Y, PetscScalar a)
1649: {
1650:   Mat_SeqSELL *y = (Mat_SeqSELL *)Y->data;

1652:   PetscFunctionBegin;
1653:   if (!Y->preallocated || !y->nz) PetscCall(MatSeqSELLSetPreallocation(Y, 1, NULL));
1654:   PetscCall(MatShift_Basic(Y, a));
1655:   PetscFunctionReturn(PETSC_SUCCESS);
1656: }

1658: PetscErrorCode MatSOR_SeqSELL(Mat A, Vec bb, PetscReal omega, MatSORType flag, PetscReal fshift, PetscInt its, PetscInt lits, Vec xx)
1659: {
1660:   Mat_SeqSELL       *a = (Mat_SeqSELL *)A->data;
1661:   PetscScalar       *x, sum, *t;
1662:   const MatScalar   *idiag = NULL, *mdiag;
1663:   const PetscScalar *b, *xb;
1664:   PetscInt           n, m = A->rmap->n, i, j, shift;
1665:   const PetscInt    *diag;

1667:   PetscFunctionBegin;
1668:   its = its * lits;

1670:   PetscCall(MatInvertDiagonalForSOR_SeqSELL(A, omega, fshift));
1671:   diag  = a->diag;
1672:   t     = a->ssor_work;
1673:   idiag = a->idiag;
1674:   mdiag = a->mdiag;

1676:   PetscCall(VecGetArray(xx, &x));
1677:   PetscCall(VecGetArrayRead(bb, &b));
1678:   /* We count flops by assuming the upper triangular and lower triangular parts have the same number of nonzeros */
1679:   PetscCheck(flag != SOR_APPLY_UPPER, PETSC_COMM_SELF, PETSC_ERR_SUP, "SOR_APPLY_UPPER is not implemented");
1680:   PetscCheck(flag != SOR_APPLY_LOWER, PETSC_COMM_SELF, PETSC_ERR_SUP, "SOR_APPLY_LOWER is not implemented");
1681:   PetscCheck(!(flag & SOR_EISENSTAT), PETSC_COMM_SELF, PETSC_ERR_SUP, "No support yet for Eisenstat");

1683:   if (flag & SOR_ZERO_INITIAL_GUESS) {
1684:     if ((flag & SOR_FORWARD_SWEEP) || (flag & SOR_LOCAL_FORWARD_SWEEP)) {
1685:       for (i = 0; i < m; i++) {
1686:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
1687:         sum   = b[i];
1688:         n     = (diag[i] - shift) / a->sliceheight;
1689:         for (j = 0; j < n; j++) sum -= a->val[shift + a->sliceheight * j] * x[a->colidx[shift + a->sliceheight * j]];
1690:         t[i] = sum;
1691:         x[i] = sum * idiag[i];
1692:       }
1693:       xb = t;
1694:       PetscCall(PetscLogFlops(a->nz));
1695:     } else xb = b;
1696:     if ((flag & SOR_BACKWARD_SWEEP) || (flag & SOR_LOCAL_BACKWARD_SWEEP)) {
1697:       for (i = m - 1; i >= 0; i--) {
1698:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
1699:         sum   = xb[i];
1700:         n     = a->rlen[i] - (diag[i] - shift) / a->sliceheight - 1;
1701:         for (j = 1; j <= n; j++) sum -= a->val[diag[i] + a->sliceheight * j] * x[a->colidx[diag[i] + a->sliceheight * j]];
1702:         if (xb == b) {
1703:           x[i] = sum * idiag[i];
1704:         } else {
1705:           x[i] = (1. - omega) * x[i] + sum * idiag[i]; /* omega in idiag */
1706:         }
1707:       }
1708:       PetscCall(PetscLogFlops(a->nz)); /* assumes 1/2 in upper */
1709:     }
1710:     its--;
1711:   }
1712:   while (its--) {
1713:     if ((flag & SOR_FORWARD_SWEEP) || (flag & SOR_LOCAL_FORWARD_SWEEP)) {
1714:       for (i = 0; i < m; i++) {
1715:         /* lower */
1716:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
1717:         sum   = b[i];
1718:         n     = (diag[i] - shift) / a->sliceheight;
1719:         for (j = 0; j < n; j++) sum -= a->val[shift + a->sliceheight * j] * x[a->colidx[shift + a->sliceheight * j]];
1720:         t[i] = sum; /* save application of the lower-triangular part */
1721:         /* upper */
1722:         n = a->rlen[i] - (diag[i] - shift) / a->sliceheight - 1;
1723:         for (j = 1; j <= n; j++) sum -= a->val[diag[i] + a->sliceheight * j] * x[a->colidx[diag[i] + a->sliceheight * j]];
1724:         x[i] = (1. - omega) * x[i] + sum * idiag[i]; /* omega in idiag */
1725:       }
1726:       xb = t;
1727:       PetscCall(PetscLogFlops(2.0 * a->nz));
1728:     } else xb = b;
1729:     if ((flag & SOR_BACKWARD_SWEEP) || (flag & SOR_LOCAL_BACKWARD_SWEEP)) {
1730:       for (i = m - 1; i >= 0; i--) {
1731:         shift = a->sliidx[i / a->sliceheight] + i % a->sliceheight; /* starting index of the row i */
1732:         sum   = xb[i];
1733:         if (xb == b) {
1734:           /* whole matrix (no checkpointing available) */
1735:           n = a->rlen[i];
1736:           for (j = 0; j < n; j++) sum -= a->val[shift + a->sliceheight * j] * x[a->colidx[shift + a->sliceheight * j]];
1737:           x[i] = (1. - omega) * x[i] + (sum + mdiag[i] * x[i]) * idiag[i];
1738:         } else { /* lower-triangular part has been saved, so only apply upper-triangular */
1739:           n = a->rlen[i] - (diag[i] - shift) / a->sliceheight - 1;
1740:           for (j = 1; j <= n; j++) sum -= a->val[diag[i] + a->sliceheight * j] * x[a->colidx[diag[i] + a->sliceheight * j]];
1741:           x[i] = (1. - omega) * x[i] + sum * idiag[i]; /* omega in idiag */
1742:         }
1743:       }
1744:       if (xb == b) PetscCall(PetscLogFlops(2.0 * a->nz));
1745:       else PetscCall(PetscLogFlops(a->nz)); /* assumes 1/2 in upper */
1746:     }
1747:   }
1748:   PetscCall(VecRestoreArray(xx, &x));
1749:   PetscCall(VecRestoreArrayRead(bb, &b));
1750:   PetscFunctionReturn(PETSC_SUCCESS);
1751: }

1753: static struct _MatOps MatOps_Values = {MatSetValues_SeqSELL,
1754:                                        MatGetRow_SeqSELL,
1755:                                        MatRestoreRow_SeqSELL,
1756:                                        MatMult_SeqSELL,
1757:                                        /* 4*/ MatMultAdd_SeqSELL,
1758:                                        MatMultTranspose_SeqSELL,
1759:                                        MatMultTransposeAdd_SeqSELL,
1760:                                        NULL,
1761:                                        NULL,
1762:                                        NULL,
1763:                                        /* 10*/ NULL,
1764:                                        NULL,
1765:                                        NULL,
1766:                                        MatSOR_SeqSELL,
1767:                                        NULL,
1768:                                        /* 15*/ MatGetInfo_SeqSELL,
1769:                                        MatEqual_SeqSELL,
1770:                                        MatGetDiagonal_SeqSELL,
1771:                                        MatDiagonalScale_SeqSELL,
1772:                                        NULL,
1773:                                        /* 20*/ NULL,
1774:                                        MatAssemblyEnd_SeqSELL,
1775:                                        MatSetOption_SeqSELL,
1776:                                        MatZeroEntries_SeqSELL,
1777:                                        /* 24*/ NULL,
1778:                                        NULL,
1779:                                        NULL,
1780:                                        NULL,
1781:                                        NULL,
1782:                                        /* 29*/ MatSetUp_SeqSELL,
1783:                                        NULL,
1784:                                        NULL,
1785:                                        NULL,
1786:                                        NULL,
1787:                                        /* 34*/ MatDuplicate_SeqSELL,
1788:                                        NULL,
1789:                                        NULL,
1790:                                        NULL,
1791:                                        NULL,
1792:                                        /* 39*/ NULL,
1793:                                        NULL,
1794:                                        NULL,
1795:                                        MatGetValues_SeqSELL,
1796:                                        MatCopy_SeqSELL,
1797:                                        /* 44*/ NULL,
1798:                                        MatScale_SeqSELL,
1799:                                        MatShift_SeqSELL,
1800:                                        NULL,
1801:                                        NULL,
1802:                                        /* 49*/ NULL,
1803:                                        NULL,
1804:                                        NULL,
1805:                                        NULL,
1806:                                        NULL,
1807:                                        /* 54*/ MatFDColoringCreate_SeqXAIJ,
1808:                                        NULL,
1809:                                        NULL,
1810:                                        NULL,
1811:                                        NULL,
1812:                                        /* 59*/ NULL,
1813:                                        MatDestroy_SeqSELL,
1814:                                        MatView_SeqSELL,
1815:                                        NULL,
1816:                                        NULL,
1817:                                        /* 64*/ NULL,
1818:                                        NULL,
1819:                                        NULL,
1820:                                        NULL,
1821:                                        NULL,
1822:                                        /* 69*/ NULL,
1823:                                        NULL,
1824:                                        NULL,
1825:                                        MatFDColoringApply_AIJ, /* reuse the FDColoring function for AIJ */
1826:                                        NULL,
1827:                                        /* 74*/ NULL,
1828:                                        NULL,
1829:                                        NULL,
1830:                                        NULL,
1831:                                        NULL,
1832:                                        /* 79*/ NULL,
1833:                                        NULL,
1834:                                        NULL,
1835:                                        NULL,
1836:                                        NULL,
1837:                                        /* 84*/ NULL,
1838:                                        NULL,
1839:                                        NULL,
1840:                                        NULL,
1841:                                        NULL,
1842:                                        /* 89*/ NULL,
1843:                                        NULL,
1844:                                        NULL,
1845:                                        NULL,
1846:                                        MatConjugate_SeqSELL,
1847:                                        /* 94*/ NULL,
1848:                                        NULL,
1849:                                        NULL,
1850:                                        NULL,
1851:                                        NULL,
1852:                                        /* 99*/ NULL,
1853:                                        NULL,
1854:                                        NULL,
1855:                                        NULL,
1856:                                        NULL,
1857:                                        /*104*/ NULL,
1858:                                        NULL,
1859:                                        NULL,
1860:                                        NULL,
1861:                                        NULL,
1862:                                        /*109*/ NULL,
1863:                                        NULL,
1864:                                        NULL,
1865:                                        NULL,
1866:                                        NULL,
1867:                                        /*114*/ NULL,
1868:                                        NULL,
1869:                                        NULL,
1870:                                        NULL,
1871:                                        NULL,
1872:                                        /*119*/ NULL,
1873:                                        NULL,
1874:                                        NULL,
1875:                                        NULL,
1876:                                        NULL,
1877:                                        /*124*/ NULL,
1878:                                        NULL,
1879:                                        NULL,
1880:                                        MatFDColoringSetUp_SeqXAIJ,
1881:                                        NULL,
1882:                                        /*129*/ NULL,
1883:                                        NULL,
1884:                                        NULL,
1885:                                        NULL,
1886:                                        NULL,
1887:                                        /*134*/ NULL,
1888:                                        NULL,
1889:                                        NULL,
1890:                                        NULL,
1891:                                        NULL,
1892:                                        /*139*/ NULL,
1893:                                        NULL,
1894:                                        NULL,
1895:                                        NULL,
1896:                                        MatADot_Default,
1897:                                        /*144*/ MatANorm_Default,
1898:                                        NULL,
1899:                                        NULL,
1900:                                        NULL};

1902: static PetscErrorCode MatStoreValues_SeqSELL(Mat mat)
1903: {
1904:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;

1906:   PetscFunctionBegin;
1907:   PetscCheck(a->nonew, PETSC_COMM_SELF, PETSC_ERR_ORDER, "Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");

1909:   /* allocate space for values if not already there */
1910:   if (!a->saved_values) PetscCall(PetscMalloc1(a->sliidx[a->totalslices] + 1, &a->saved_values));

1912:   /* copy values over */
1913:   PetscCall(PetscArraycpy(a->saved_values, a->val, a->sliidx[a->totalslices]));
1914:   PetscFunctionReturn(PETSC_SUCCESS);
1915: }

1917: static PetscErrorCode MatRetrieveValues_SeqSELL(Mat mat)
1918: {
1919:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;

1921:   PetscFunctionBegin;
1922:   PetscCheck(a->nonew, PETSC_COMM_SELF, PETSC_ERR_ORDER, "Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");
1923:   PetscCheck(a->saved_values, PETSC_COMM_SELF, PETSC_ERR_ORDER, "Must call MatStoreValues(A);first");
1924:   PetscCall(PetscArraycpy(a->val, a->saved_values, a->sliidx[a->totalslices]));
1925:   PetscFunctionReturn(PETSC_SUCCESS);
1926: }

1928: static PetscErrorCode MatSeqSELLGetFillRatio_SeqSELL(Mat mat, PetscReal *ratio)
1929: {
1930:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;

1932:   PetscFunctionBegin;
1933:   if (a->totalslices && a->sliidx[a->totalslices]) {
1934:     *ratio = (PetscReal)(a->sliidx[a->totalslices] - a->nz) / a->sliidx[a->totalslices];
1935:   } else {
1936:     *ratio = 0.0;
1937:   }
1938:   PetscFunctionReturn(PETSC_SUCCESS);
1939: }

1941: static PetscErrorCode MatSeqSELLGetMaxSliceWidth_SeqSELL(Mat mat, PetscInt *slicewidth)
1942: {
1943:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;
1944:   PetscInt     i, current_slicewidth;

1946:   PetscFunctionBegin;
1947:   *slicewidth = 0;
1948:   for (i = 0; i < a->totalslices; i++) {
1949:     current_slicewidth = (a->sliidx[i + 1] - a->sliidx[i]) / a->sliceheight;
1950:     if (current_slicewidth > *slicewidth) *slicewidth = current_slicewidth;
1951:   }
1952:   PetscFunctionReturn(PETSC_SUCCESS);
1953: }

1955: static PetscErrorCode MatSeqSELLGetAvgSliceWidth_SeqSELL(Mat mat, PetscReal *slicewidth)
1956: {
1957:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;

1959:   PetscFunctionBegin;
1960:   *slicewidth = 0;
1961:   if (a->totalslices) *slicewidth = (PetscReal)a->sliidx[a->totalslices] / a->sliceheight / a->totalslices;
1962:   PetscFunctionReturn(PETSC_SUCCESS);
1963: }

1965: static PetscErrorCode MatSeqSELLGetVarSliceSize_SeqSELL(Mat mat, PetscReal *variance)
1966: {
1967:   Mat_SeqSELL *a = (Mat_SeqSELL *)mat->data;
1968:   PetscReal    mean;
1969:   PetscInt     i, totalslices = a->totalslices, *sliidx = a->sliidx;

1971:   PetscFunctionBegin;
1972:   *variance = 0;
1973:   if (totalslices) {
1974:     mean = (PetscReal)sliidx[totalslices] / totalslices;
1975:     for (i = 1; i <= totalslices; i++) *variance += ((PetscReal)(sliidx[i] - sliidx[i - 1]) - mean) * ((PetscReal)(sliidx[i] - sliidx[i - 1]) - mean) / totalslices;
1976:   }
1977:   PetscFunctionReturn(PETSC_SUCCESS);
1978: }

1980: static PetscErrorCode MatSeqSELLSetSliceHeight_SeqSELL(Mat A, PetscInt sliceheight)
1981: {
1982:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data;

1984:   PetscFunctionBegin;
1985:   if (A->preallocated) PetscFunctionReturn(PETSC_SUCCESS);
1986:   PetscCheck(a->sliceheight <= 0 || a->sliceheight == sliceheight, PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot change slice height %" PetscInt_FMT " to %" PetscInt_FMT, a->sliceheight, sliceheight);
1987:   a->sliceheight = sliceheight;
1988: #if PetscDefined(HAVE_CUPM)
1989:   PetscCheck(PetscMax(DEVICE_MEM_ALIGN, sliceheight) % PetscMin(DEVICE_MEM_ALIGN, sliceheight) == 0, PETSC_COMM_SELF, PETSC_ERR_SUP, "The slice height is not compatible with DEVICE_MEM_ALIGN (one must be divisible by the other) %" PetscInt_FMT, sliceheight);
1990: #endif
1991:   PetscFunctionReturn(PETSC_SUCCESS);
1992: }

1994: /*@
1995:   MatSeqSELLGetFillRatio - returns a ratio that indicates the irregularity of the matrix.

1997:   Not Collective

1999:   Input Parameter:
2000: . A - a MATSEQSELL matrix

2002:   Output Parameter:
2003: . ratio - ratio of number of padded zeros to number of allocated elements

2005:   Level: intermediate

2007: .seealso: `MATSEQSELL`, `MatSeqSELLGetAvgSliceWidth()`
2008: @*/
2009: PetscErrorCode MatSeqSELLGetFillRatio(Mat A, PetscReal *ratio)
2010: {
2011:   PetscFunctionBegin;
2012:   PetscUseMethod(A, "MatSeqSELLGetFillRatio_C", (Mat, PetscReal *), (A, ratio));
2013:   PetscFunctionReturn(PETSC_SUCCESS);
2014: }

2016: /*@
2017:   MatSeqSELLGetMaxSliceWidth - returns the maximum slice width.

2019:   Not Collective

2021:   Input Parameter:
2022: . A - a MATSEQSELL matrix

2024:   Output Parameter:
2025: . slicewidth - maximum slice width

2027:   Level: intermediate

2029: .seealso: `MATSEQSELL`, `MatSeqSELLGetAvgSliceWidth()`
2030: @*/
2031: PetscErrorCode MatSeqSELLGetMaxSliceWidth(Mat A, PetscInt *slicewidth)
2032: {
2033:   PetscFunctionBegin;
2034:   PetscUseMethod(A, "MatSeqSELLGetMaxSliceWidth_C", (Mat, PetscInt *), (A, slicewidth));
2035:   PetscFunctionReturn(PETSC_SUCCESS);
2036: }

2038: /*@
2039:   MatSeqSELLGetAvgSliceWidth - returns the average slice width.

2041:   Not Collective

2043:   Input Parameter:
2044: . A - a MATSEQSELL matrix

2046:   Output Parameter:
2047: . slicewidth - average slice width

2049:   Level: intermediate

2051: .seealso: `MATSEQSELL`, `MatSeqSELLGetMaxSliceWidth()`
2052: @*/
2053: PetscErrorCode MatSeqSELLGetAvgSliceWidth(Mat A, PetscReal *slicewidth)
2054: {
2055:   PetscFunctionBegin;
2056:   PetscUseMethod(A, "MatSeqSELLGetAvgSliceWidth_C", (Mat, PetscReal *), (A, slicewidth));
2057:   PetscFunctionReturn(PETSC_SUCCESS);
2058: }

2060: /*@
2061:   MatSeqSELLSetSliceHeight - sets the slice height.

2063:   Not Collective

2065:   Input Parameters:
2066: + A           - a MATSEQSELL matrix
2067: - sliceheight - slice height

2069:   Notes:
2070:   You cannot change the slice height once it have been set.

2072:   The slice height must be set before MatSetUp() or MatXXXSetPreallocation() is called.

2074:   Level: intermediate

2076: .seealso: `MATSEQSELL`, `MatSeqSELLGetVarSliceSize()`
2077: @*/
2078: PetscErrorCode MatSeqSELLSetSliceHeight(Mat A, PetscInt sliceheight)
2079: {
2080:   PetscFunctionBegin;
2081:   PetscUseMethod(A, "MatSeqSELLSetSliceHeight_C", (Mat, PetscInt), (A, sliceheight));
2082:   PetscFunctionReturn(PETSC_SUCCESS);
2083: }

2085: /*@
2086:   MatSeqSELLGetVarSliceSize - returns the variance of the slice size.

2088:   Not Collective

2090:   Input Parameter:
2091: . A - a MATSEQSELL matrix

2093:   Output Parameter:
2094: . variance - variance of the slice size

2096:   Level: intermediate

2098: .seealso: `MATSEQSELL`, `MatSeqSELLSetSliceHeight()`
2099: @*/
2100: PetscErrorCode MatSeqSELLGetVarSliceSize(Mat A, PetscReal *variance)
2101: {
2102:   PetscFunctionBegin;
2103:   PetscUseMethod(A, "MatSeqSELLGetVarSliceSize_C", (Mat, PetscReal *), (A, variance));
2104:   PetscFunctionReturn(PETSC_SUCCESS);
2105: }

2107: #if PetscDefined(HAVE_CUDA)
2108: PETSC_EXTERN PetscErrorCode MatConvert_SeqSELL_SeqSELLCUDA(Mat);
2109: #endif
2110: #if PetscDefined(HAVE_HIP)
2111: PETSC_EXTERN PetscErrorCode MatConvert_SeqSELL_SeqSELLHIP(Mat);
2112: #endif

2114: PETSC_EXTERN PetscErrorCode MatCreate_SeqSELL(Mat B)
2115: {
2116:   Mat_SeqSELL *b;
2117:   PetscMPIInt  size;

2119:   PetscFunctionBegin;
2120:   PetscCall(PetscCitationsRegister(citation, &cited));
2121:   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)B), &size));
2122:   PetscCheck(size <= 1, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Comm must be of size 1");

2124:   PetscCall(PetscNew(&b));

2126:   B->data   = (void *)b;
2127:   B->ops[0] = MatOps_Values;

2129:   b->row                = NULL;
2130:   b->col                = NULL;
2131:   b->icol               = NULL;
2132:   b->reallocs           = 0;
2133:   b->ignorezeroentries  = PETSC_FALSE;
2134:   b->roworiented        = PETSC_TRUE;
2135:   b->nonew              = 0;
2136:   b->diag               = NULL;
2137:   b->solve_work         = NULL;
2138:   B->spptr              = NULL;
2139:   b->saved_values       = NULL;
2140:   b->idiag              = NULL;
2141:   b->mdiag              = NULL;
2142:   b->ssor_work          = NULL;
2143:   b->omega              = 1.0;
2144:   b->fshift             = 0.0;
2145:   b->keepnonzeropattern = PETSC_FALSE;
2146:   b->sliceheight        = 0;

2148:   PetscCall(PetscObjectChangeTypeName((PetscObject)B, MATSEQSELL));
2149:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLGetArray_C", MatSeqSELLGetArray_SeqSELL));
2150:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLRestoreArray_C", MatSeqSELLRestoreArray_SeqSELL));
2151:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatStoreValues_C", MatStoreValues_SeqSELL));
2152:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatRetrieveValues_C", MatRetrieveValues_SeqSELL));
2153:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLSetPreallocation_C", MatSeqSELLSetPreallocation_SeqSELL));
2154:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatConvert_seqsell_seqaij_C", MatConvert_SeqSELL_SeqAIJ));
2155: #if PetscDefined(HAVE_CUDA)
2156:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatConvert_seqsell_seqsellcuda_C", MatConvert_SeqSELL_SeqSELLCUDA));
2157: #endif
2158: #if PetscDefined(HAVE_HIP)
2159:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatConvert_seqsell_seqsellhip_C", MatConvert_SeqSELL_SeqSELLHIP));
2160: #endif
2161:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLGetFillRatio_C", MatSeqSELLGetFillRatio_SeqSELL));
2162:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLGetMaxSliceWidth_C", MatSeqSELLGetMaxSliceWidth_SeqSELL));
2163:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLGetAvgSliceWidth_C", MatSeqSELLGetAvgSliceWidth_SeqSELL));
2164:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLGetVarSliceSize_C", MatSeqSELLGetVarSliceSize_SeqSELL));
2165:   PetscCall(PetscObjectComposeFunction((PetscObject)B, "MatSeqSELLSetSliceHeight_C", MatSeqSELLSetSliceHeight_SeqSELL));

2167:   PetscObjectOptionsBegin((PetscObject)B);
2168:   {
2169:     PetscInt  newsh = -1;
2170:     PetscBool flg;
2171: #if PetscDefined(HAVE_CUPM)
2172:     PetscInt chunksize = 0;
2173: #endif

2175:     PetscCall(PetscOptionsInt("-mat_sell_slice_height", "Set the slice height used to store SELL matrix", "MatSELLSetSliceHeight", newsh, &newsh, &flg));
2176:     if (flg) PetscCall(MatSeqSELLSetSliceHeight(B, newsh));
2177: #if PetscDefined(HAVE_CUPM)
2178:     PetscCall(PetscOptionsInt("-mat_sell_chunk_size", "Set the chunksize for load-balanced CUDA/HIP kernels. Choices include 64,128,256,512,1024", NULL, chunksize, &chunksize, &flg));
2179:     if (flg) {
2180:       PetscCheck(chunksize >= 64 && chunksize <= 1024 && chunksize % 64 == 0, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "chunksize must be a number in {64,128,256,512,1024}: value %" PetscInt_FMT, chunksize);
2181:       b->chunksize = chunksize;
2182:     }
2183: #endif
2184:   }
2185:   PetscOptionsEnd();
2186:   PetscFunctionReturn(PETSC_SUCCESS);
2187: }

2189: /*
2190:  Given a matrix generated with MatGetFactor() duplicates all the information in A into B
2191:  */
2192: static PetscErrorCode MatDuplicateNoCreate_SeqSELL(Mat C, Mat A, MatDuplicateOption cpvalues, PetscBool mallocmatspace)
2193: {
2194:   Mat_SeqSELL *c = (Mat_SeqSELL *)C->data, *a = (Mat_SeqSELL *)A->data;
2195:   PetscInt     i, m                           = A->rmap->n;
2196:   PetscInt     totalslices = a->totalslices;

2198:   PetscFunctionBegin;
2199:   C->factortype = A->factortype;
2200:   c->row        = NULL;
2201:   c->col        = NULL;
2202:   c->icol       = NULL;
2203:   c->reallocs   = 0;
2204:   C->assembled  = PETSC_TRUE;

2206:   PetscCall(PetscLayoutReference(A->rmap, &C->rmap));
2207:   PetscCall(PetscLayoutReference(A->cmap, &C->cmap));

2209:   c->sliceheight = a->sliceheight;
2210:   PetscCall(PetscMalloc1(c->sliceheight * totalslices, &c->rlen));
2211:   PetscCall(PetscMalloc1(totalslices + 1, &c->sliidx));

2213:   for (i = 0; i < m; i++) c->rlen[i] = a->rlen[i];
2214:   for (i = 0; i < totalslices + 1; i++) c->sliidx[i] = a->sliidx[i];

2216:   /* allocate the matrix space */
2217:   if (mallocmatspace) {
2218:     PetscCall(PetscMalloc2(a->maxallocmat, &c->val, a->maxallocmat, &c->colidx));

2220:     c->singlemalloc = PETSC_TRUE;

2222:     if (m > 0) {
2223:       PetscCall(PetscArraycpy(c->colidx, a->colidx, a->maxallocmat));
2224:       if (cpvalues == MAT_COPY_VALUES) {
2225:         PetscCall(PetscArraycpy(c->val, a->val, a->maxallocmat));
2226:       } else {
2227:         PetscCall(PetscArrayzero(c->val, a->maxallocmat));
2228:       }
2229:     }
2230:   }

2232:   c->ignorezeroentries  = a->ignorezeroentries;
2233:   c->roworiented        = a->roworiented;
2234:   c->nonew              = a->nonew;
2235:   c->solve_work         = NULL;
2236:   c->saved_values       = NULL;
2237:   c->idiag              = NULL;
2238:   c->ssor_work          = NULL;
2239:   c->keepnonzeropattern = a->keepnonzeropattern;
2240:   c->free_val           = PETSC_TRUE;
2241:   c->free_colidx        = PETSC_TRUE;

2243:   c->maxallocmat  = a->maxallocmat;
2244:   c->maxallocrow  = a->maxallocrow;
2245:   c->rlenmax      = a->rlenmax;
2246:   c->nz           = a->nz;
2247:   C->preallocated = PETSC_TRUE;

2249:   c->nonzerorowcnt = a->nonzerorowcnt;
2250:   C->nonzerostate  = A->nonzerostate;

2252:   PetscCall(PetscFunctionListDuplicate(((PetscObject)A)->qlist, &((PetscObject)C)->qlist));
2253:   PetscFunctionReturn(PETSC_SUCCESS);
2254: }

2256: PetscErrorCode MatDuplicate_SeqSELL(Mat A, MatDuplicateOption cpvalues, Mat *B)
2257: {
2258:   PetscFunctionBegin;
2259:   PetscCall(MatCreate(PetscObjectComm((PetscObject)A), B));
2260:   PetscCall(MatSetSizes(*B, A->rmap->n, A->cmap->n, A->rmap->n, A->cmap->n));
2261:   if (!(A->rmap->n % A->rmap->bs) && !(A->cmap->n % A->cmap->bs)) PetscCall(MatSetBlockSizesFromMats(*B, A, A));
2262:   PetscCall(MatSetType(*B, ((PetscObject)A)->type_name));
2263:   PetscCall(MatDuplicateNoCreate_SeqSELL(*B, A, cpvalues, PETSC_TRUE));
2264:   PetscFunctionReturn(PETSC_SUCCESS);
2265: }

2267: /*MC
2268:    MATSEQSELL - MATSEQSELL = "seqsell" - A matrix type to be used for sequential sparse matrices,
2269:    based on the sliced Ellpack format, {cite}`zhangellpack2018`

2271:    Options Database Key:
2272: . -mat_type seqsell - sets the matrix type to "`MATSEQELL` during a call to `MatSetFromOptions()`

2274:    Level: beginner

2276: .seealso: `Mat`, `MatCreateSeqSELL()`, `MATSELL`, `MATMPISELL`, `MATSEQAIJ`, `MATAIJ`, `MATMPIAIJ`
2277: M*/

2279: /*MC
2280:    MATSELL - MATSELL = "sell" - A matrix type to be used for sparse matrices, {cite}`zhangellpack2018`

2282:    This matrix type is identical to `MATSEQSELL` when constructed with a single process communicator,
2283:    and `MATMPISELL` otherwise.  As a result, for single process communicators,
2284:   `MatSeqSELLSetPreallocation()` is supported, and similarly `MatMPISELLSetPreallocation()` is supported
2285:   for communicators controlling multiple processes.  It is recommended that you call both of
2286:   the above preallocation routines for simplicity.

2288:    Options Database Key:
2289: . -mat_type sell - sets the matrix type to "sell" during a call to MatSetFromOptions()

2291:   Level: beginner

2293:   Notes:
2294:   This format is only supported for real scalars, double precision, and 32-bit indices (the defaults).

2296:   It can provide better performance on Intel and AMD processes with AVX2 or AVX512 support for matrices that have a similar number of
2297:   non-zeros in contiguous groups of rows. However if the computation is memory bandwidth limited it may not provide much improvement.

2299:   Developer Notes:
2300:   On Intel (and AMD) systems some of the matrix operations use SIMD (AVX) instructions to achieve higher performance.

2302:   The sparse matrix format is as follows. For simplicity we assume a slice size of 2, it is actually 8
2303: .vb
2304:                             (2 0  3 4)
2305:    Consider the matrix A =  (5 0  6 0)
2306:                             (0 0  7 8)
2307:                             (0 0  9 9)

2309:    symbolically the Ellpack format can be written as

2311:         (2 3 4 |)           (0 2 3 |)
2312:    v =  (5 6 0 |)  colidx = (0 2 2 |)
2313:         --------            ---------
2314:         (7 8 |)             (2 3 |)
2315:         (9 9 |)             (2 3 |)

2317:     The data for 2 contiguous rows of the matrix are stored together (in column-major format) (with any left-over rows handled as a special case).
2318:     Any of the rows in a slice fewer columns than the rest of the slice (row 1 above) are padded with a previous valid column in their "extra" colidx[] locations and
2319:     zeros in their "extra" v locations so that the matrix operations do not need special code to handle different length rows within the 2 rows in a slice.

2321:     The one-dimensional representation of v used in the code is (2 5 3 6 4 0 7 9 8 9)  and for colidx is (0 0 2 2 3 2 2 2 3 3)

2323: .ve

2325:     See `MatMult_SeqSELL()` for how this format is used with the SIMD operations to achieve high performance.

2327: .seealso: `Mat`, `MatCreateSeqSELL()`, `MatCreateSeqAIJ()`, `MatCreateSELL()`, `MATSEQSELL`, `MATMPISELL`, `MATSEQAIJ`, `MATMPIAIJ`, `MATAIJ`
2328: M*/

2330: /*@
2331:   MatCreateSeqSELL - Creates a sparse matrix in `MATSEQSELL` format.

2333:   Collective

2335:   Input Parameters:
2336: + comm    - MPI communicator, set to `PETSC_COMM_SELF`
2337: . m       - number of rows
2338: . n       - number of columns
2339: . rlenmax - maximum number of nonzeros in a row, ignored if `rlen` is provided
2340: - rlen    - array containing the number of nonzeros in the various rows (possibly different for each row) or NULL

2342:   Output Parameter:
2343: . A - the matrix

2345:   Level: intermediate

2347:   Notes:
2348:   It is recommended that one use the `MatCreate()`, `MatSetType()` and/or `MatSetFromOptions()`,
2349:   MatXXXXSetPreallocation() paradigm instead of this routine directly.
2350:   [MatXXXXSetPreallocation() is, for example, `MatSeqSELLSetPreallocation()`]

2352:   Specify the preallocated storage with either `rlenmax` or `rlen` (not both).
2353:   Set `rlenmax` = `PETSC_DEFAULT` and `rlen` = `NULL` for PETSc to control dynamic memory
2354:   allocation.

2356: .seealso: `Mat`, `MATSEQSELL`, `MatCreate()`, `MatCreateSELL()`, `MatSetValues()`, `MatSeqSELLSetPreallocation()`, `MATSELL`, `MATMPISELL`
2357:  @*/
2358: PetscErrorCode MatCreateSeqSELL(MPI_Comm comm, PetscInt m, PetscInt n, PetscInt rlenmax, const PetscInt rlen[], Mat *A)
2359: {
2360:   PetscFunctionBegin;
2361:   PetscCall(MatCreate(comm, A));
2362:   PetscCall(MatSetSizes(*A, m, n, m, n));
2363:   PetscCall(MatSetType(*A, MATSEQSELL));
2364:   PetscCall(MatSeqSELLSetPreallocation_SeqSELL(*A, rlenmax, rlen));
2365:   PetscFunctionReturn(PETSC_SUCCESS);
2366: }

2368: PetscErrorCode MatEqual_SeqSELL(Mat A, Mat B, PetscBool *flg)
2369: {
2370:   Mat_SeqSELL *a = (Mat_SeqSELL *)A->data, *b = (Mat_SeqSELL *)B->data;
2371:   PetscInt     totalslices = a->totalslices;

2373:   PetscFunctionBegin;
2374:   /* If the  matrix dimensions are not equal,or no of nonzeros */
2375:   if ((A->rmap->n != B->rmap->n) || (A->cmap->n != B->cmap->n) || (a->nz != b->nz) || (a->rlenmax != b->rlenmax)) {
2376:     *flg = PETSC_FALSE;
2377:     PetscFunctionReturn(PETSC_SUCCESS);
2378:   }
2379:   /* if the a->colidx are the same */
2380:   PetscCall(PetscArraycmp(a->colidx, b->colidx, a->sliidx[totalslices], flg));
2381:   if (!*flg) PetscFunctionReturn(PETSC_SUCCESS);
2382:   /* if a->val are the same */
2383:   PetscCall(PetscArraycmp(a->val, b->val, a->sliidx[totalslices], flg));
2384:   PetscFunctionReturn(PETSC_SUCCESS);
2385: }

2387: PetscErrorCode MatConjugate_SeqSELL(Mat A)
2388: {
2389:   Mat_SeqSELL *a   = (Mat_SeqSELL *)A->data;
2390:   PetscScalar *val = a->val;

2392:   PetscFunctionBegin;
2393:   for (PetscInt i = 0; i < a->sliidx[a->totalslices]; i++) val[i] = PetscConj(val[i]);
2394: #if PetscDefined(HAVE_CUPM)
2395:   if (A->offloadmask != PETSC_OFFLOAD_UNALLOCATED) A->offloadmask = PETSC_OFFLOAD_CPU;
2396: #endif
2397:   PetscFunctionReturn(PETSC_SUCCESS);
2398: }