Home
last modified time | relevance | path

Searched refs:NoInit (Results 1 – 4 of 4) sorted by relevance

/petsc/src/ksp/pc/impls/vpbjacobi/kokkos/
H A Dvpbjacobi_kok.kokkos.cxx33 n(n), nblocks(nblocks), nsize(nsize), bs_dual(NoInit("bs_dual"), nblocks + 1), in PC_VPBJacobi_Kokkos()
34 bs2_dual(NoInit("bs2_dual"), nblocks + 1), blkMap_dual(NoInit("blkMap_dual"), n), in PC_VPBJacobi_Kokkos()
35 diag(NoInit("diag"), nsize), work(NoInit("work"), nsize) in PC_VPBJacobi_Kokkos()
/petsc/src/mat/impls/aij/mpi/kokkos/
H A Dmpiaijkok.kokkos.cxx360 … PetscIntKokkosViewHost E_NzLeft_h(NoInit("E_NzLeft_h"), Em), E_RowLen_h(NoInit("E_RowLen_h"), Em); in MatMPIAIJKokkosReduceBegin()
475 MatRowMapKokkosViewHost Fdi_h(NoInit("Fdi_h"), Fm + 1), Foi_h(NoInit("Foi_h"), Fm + 1); in MatMPIAIJKokkosReduceBegin()
540 MatColIdxKokkosViewHost Fdj_h(NoInit("Fdj_h"), Fdnz), Foj_h(NoInit("Foj_h"), Fonz); in MatMPIAIJKokkosReduceBegin()
541 …MatRowMapKokkosViewHost Fdjmap_h(NoInit("Fdjmap_h"), Fdnz + 1), Fojmap_h(NoInit("Fojmap_h"), Fonz … in MatMPIAIJKokkosReduceBegin()
542 …MatRowMapKokkosViewHost Fdjperm_h(NoInit("Fdjperm_h"), FdnzDups), Fojperm_h(NoInit("Fojperm_h"), F… in MatMPIAIJKokkosReduceBegin()
599 mm->leafBuf = MatScalarKokkosView(NoInit("leafBuf"), nleaves); in MatMPIAIJKokkosReduceBegin()
600 mm->rootBuf = MatScalarKokkosView(NoInit("rootBuf"), nroots); in MatMPIAIJKokkosReduceBegin()
610 MatScalarKokkosView Fda_d(NoInit("Fda_d"), Fdnz); in MatMPIAIJKokkosReduceBegin()
613 MatScalarKokkosView Foa_d(NoInit("Foa_d"), Fonz); in MatMPIAIJKokkosReduceBegin()
759 … PetscIntKokkosViewHost E_NzLeft_h(NoInit("E_NzLeft_h"), Em), E_RowLen_h(NoInit("E_RowLen_h"), Em); in MatMPIAIJKokkosBcastBegin()
[all …]
/petsc/src/mat/impls/aij/seq/kokkos/
H A Daijkok.kokkos.cxx267 MatRowMapKokkosViewHost Ti_h(NoInit("Ti"), n + 1); in MatSeqAIJKokkosGenerateTransposeStructure()
269 MatColIdxKokkosViewHost Tj_h(NoInit("Tj"), nz); in MatSeqAIJKokkosGenerateTransposeStructure()
270 MatRowMapKokkosViewHost perm_h(NoInit("permutation"), nz); in MatSeqAIJKokkosGenerateTransposeStructure()
1703 factors->jUt_d = MatColIdxKokkosView(NoInit("factors->jUt_d"), factors->jU_d.extent(0)); in MatSeqAIJKokkosTransposeSolveCheck()
1704 factors->aUt_d = MatScalarKokkosView(NoInit("factors->aUt_d"), factors->aU_d.extent(0)); in MatSeqAIJKokkosTransposeSolveCheck()
1740 factors->jLt_d = MatColIdxKokkosView(NoInit("factors->jLt_d"), factors->jL_d.extent(0)); in MatSeqAIJKokkosTransposeSolveCheck()
1741 factors->aLt_d = MatScalarKokkosView(NoInit("factors->aLt_d"), factors->aL_d.extent(0)); in MatSeqAIJKokkosTransposeSolveCheck()
1947 factors->iL_h = MatRowMapKokkosViewHost(NoInit("iL_h"), m + 1); in MatLUFactorNumeric_SeqAIJKokkos()
1948 …factors->jL_h = MatColIdxKokkosViewHost(NoInit("jL_h"), (Bi[m] - Bi[0]) + m); // + the diagonal en… in MatLUFactorNumeric_SeqAIJKokkos()
1949 factors->aL_h = MatScalarKokkosViewHost(NoInit("aL_h"), (Bi[m] - Bi[0]) + m); in MatLUFactorNumeric_SeqAIJKokkos()
[all …]
H A Daijkok.hpp12 PETSC_NODISCARD inline decltype(auto) NoInit(std::string label) in NoInit() function