Home
last modified time | relevance | path

Searched refs:oj (Results 1 – 8 of 8) sorted by relevance

/petsc/src/mat/tests/
H A Dex110.c9 PetscInt *di, *dj, *oi, *oj, nd; in main() local
45 …owIJ(AB, 0, PETSC_FALSE, PETSC_FALSE, &nd, (const PetscInt **)&oi, (const PetscInt **)&oj, &done)); in main()
49 PetscCall(PetscArraycpy(ooj, oj, oi[5])); in main()
59 …owIJ(AB, 0, PETSC_FALSE, PETSC_FALSE, &nd, (const PetscInt **)&oi, (const PetscInt **)&oj, &done)); in main()
69 PetscCall(PetscFree(oj)); in main()
H A Dex302k.kokkos.cxx16 PetscInt *di, *dj, *oi, *oj, nd; in main() local
65 …owIJ(AB, 0, PETSC_FALSE, PETSC_FALSE, &nd, (const PetscInt **)&oi, (const PetscInt **)&oj, &done)); in main()
108 PetscCallCXX(j_nonlocal_h = Kokkos::View<PetscInt *, HostMirrorMemorySpace>(oj, oi[5])); in main()
145 …owIJ(AB, 0, PETSC_FALSE, PETSC_FALSE, &nd, (const PetscInt **)&oi, (const PetscInt **)&oj, &done)); in main()
/petsc/src/mat/graphops/color/impls/jp/
H A Djp.c36 PetscInt *di, *oi, *dj, *oj; in MCJPGreatestWeight_Private() local
53 oj = NULL; in MCJPGreatestWeight_Private()
63 oj = oaij->j; in MCJPGreatestWeight_Private()
110 cols = &(oj[oi[i]]); in MCJPGreatestWeight_Private()
274 PetscInt *di, *oi, *dj, *oj; in MCJPMinColor_Private() local
295 oj = NULL; in MCJPMinColor_Private()
305 oj = oaij->j; in MCJPMinColor_Private()
354 cols = &(oj[oi[i]]); in MCJPMinColor_Private()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscmat.pxi843 cdef object oi, oj, ov
845 oi, oj, ov = CSR
847 oi, oj = CSR; ov = None
854 oj = iarray_i(oj, &nj, &j)
921 object oi, object oj, object ov, argument
934 oj = iarray_i(oj, &nj, &j)
947 object oi, object oj, object ov, argument
961 cdef ndarray aj = iarray_i(oj, &nj, &j)
1004 object oi, object oj, object ov, argument
1019 oj = iarray_i(oj, &nj, &j)
[all …]
H A DPC.pyx2128 cdef object oi, oj
2131 oi, oj = csr
2133 oj = iarray_i(oj, &nj, &j)
H A DMat.pyx1074 cdef PetscInt nj=0, noj=0, *j=NULL, *oj=NULL
1082 poj = iarray_i(poj, &noj, &oj) # Column indices (off-diagonal)
1100 if oi != NULL and oj != NULL and ov != NULL:
1102 ccomm, m, n, M, N, i, j, v, oi, oj, ov, &newmat))
/petsc/src/mat/impls/is/
H A Dmatis.c637 const PetscInt *di, *dj, *oi, *oj; in MatConvert_XAIJ_IS() local
729 PetscCall(MatGetRowIJ(Ao, 0, PETSC_FALSE, PETSC_FALSE, &i, &oi, &oj, &flg)); in MatConvert_XAIJ_IS()
736 ooj = oj; in MatConvert_XAIJ_IS()
787 *jj++ = *oj++ + dc; in MatConvert_XAIJ_IS()
/petsc/src/mat/impls/aij/mpi/
H A Dmpiaij.c6917 …nt N, PetscInt i[], PetscInt j[], PetscScalar a[], PetscInt oi[], PetscInt oj[], PetscScalar oa[],… in MatCreateMPIAIJWithSplitArrays() argument
6936 PetscCall(MatCreateSeqAIJWithArrays(PETSC_COMM_SELF, m, (*mat)->cmap->N, oi, oj, oa, &maij->B)); in MatCreateMPIAIJWithSplitArrays()