Home
last modified time | relevance | path

Searched refs:iU_h (Results 1 – 2 of 2) sorted by relevance

/petsc/src/mat/impls/aij/seq/kokkos/
H A Daijkok.kokkos.cxx1707 …if (factors->iU_h.extent(0)) { // If U is on host (factorization was done on host), we also comput… in MatSeqAIJKokkosTransposeSolveCheck()
1711 …PetscCall(MatCreateSeqAIJWithArrays(PETSC_COMM_SELF, n, n, factors->iU_h.data(), factors->jU_h.dat… in MatSeqAIJKokkosTransposeSolveCheck()
1950 factors->iU_h = MatRowMapKokkosViewHost(NoInit("iU_h"), m + 1); in MatLUFactorNumeric_SeqAIJKokkos()
1956 PetscInt *Ui = factors->iU_h.data(); in MatLUFactorNumeric_SeqAIJKokkos()
1976 factors->iU_d = Kokkos::create_mirror_view_and_copy(DefaultMemorySpace(), factors->iU_h); in MatLUFactorNumeric_SeqAIJKokkos()
2025 const PetscInt *Ui = factors->iU_h.data(); in MatLUFactorNumeric_SeqAIJKokkos()
2189 if (factors->iU_h.extent(0) == 0) { // First time of numeric factorization in MatCholeskyFactorNumeric_SeqAIJKokkos()
2191 factors->iU_h = PetscIntKokkosViewHost(const_cast<PetscInt *>(Bi), m + 1); // wrap Bi as iU_h in MatCholeskyFactorNumeric_SeqAIJKokkos()
2207 …cCallCXX(factors->iU_d = Kokkos::create_mirror_view_and_copy(DefaultMemorySpace(), factors->iU_h)); in MatCholeskyFactorNumeric_SeqAIJKokkos()
H A Daijkok.hpp67 …MatRowMapKokkosViewHost iL_h, iU_h, iLt_h, iUt_h; // temp. buffers when we do factorization with P… member