Searched refs:lda2 (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/vec/vec/impls/seq/ |
| H A D | dvec2.c | 554 …PetscBLASInt ione = 1, lda2 = (PetscBLASInt)lda; // the cast is safe since we've screened out thos… in VecMultiDot_Seq_GEMV() local 557 …PetscCallBLAS("BLASgemv", BLASgemv_(trans, &n, &m, &one, yarray, &lda2, xarray, &ione, &zero, z + … in VecMultiDot_Seq_GEMV() 739 …PetscBLASInt incx = 1, incy = 1, lda2 = (PetscBLASInt)lda; // the cast is safe since we've screene… in VecMAXPY_Seq_GEMV() local 741 …PetscCallBLAS("BLASgemv", BLASgemv_("N", &n, &m, &one, xarray, &lda2, alpha + i, &incx, &one, yarr… in VecMAXPY_Seq_GEMV()
|
| /petsc/src/mat/impls/dense/seq/ |
| H A D | dense.c | 2620 PetscInt lda1 = a->lda, lda2 = b->lda, m = A->rmap->n, n = A->cmap->n, j; in MatCopy_SeqDense() local 2631 if (lda1 > m || lda2 > m) { in MatCopy_SeqDense() 2632 for (j = 0; j < n; j++) PetscCall(PetscArraycpy(vb + j * lda2, va + j * lda1, m)); in MatCopy_SeqDense()
|