History log of /petsc/src/mat/impls/aij/mpi/kokkos/mpiaijkok.kokkos.cxx (Results 1 – 25 of 204)
Revision Date Author Comments
# 4e8208cb 31-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetC

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetCtx ctx)

See merge request petsc/petsc!8956

show more ...


# 2a8381b2 13-Jan-2026 Barry Smith <bsmith@mcs.anl.gov>

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now t

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now the standard for passing in contexts
- PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFn

Both of these are typedef to void*

Also removed most use of user and userctx for context arguments now consistently named ctx

Improved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

show more ...


# b31b2f82 10-Nov-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-10-24/fix-dmshellsetdestroyctx' into 'main'

Finish converting the function prototypes of destroy for contexts to use PetscCtxDestroyFn

See merge request petsc/petsc!8810


# cc1eb50d 27-Oct-2025 Barry Smith <bsmith@mcs.anl.gov>

Change names of Mat_XXX product contexts to MatProductCtx_XXX for code maintainability

Update destroy callback of all MatProductCtx and MatShellSetMatProductOperation() to use PetscCtxDestroyFn


# 19620d22 11-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# f4275c7c 11-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'main' into 'release'

Edit mpiaijkok.kokkos.cxx

See merge request petsc/petsc!8778


# 7f98ec86 11-Oct-2025 Victor Eijkhout <eijkhout@tacc.utexas.edu>

Edit mpiaijkok.kokkos.cxx


# 586b08f3 11-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'MarDiehl/use-MPIU' into 'main'

MPIU wrappers provide better debugging capabilities

See merge request petsc/petsc!8696


# 458b0db5 09-Sep-2025 Martin Diehl <mail@martin-diehl.net>

better debugging capabilities

using MPIU wrappers where available and PetscCallMPI for all MPI(U)
functions


# 834855d6 27-Aug-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/clang-format-21' into 'main'

clang-format-21

See merge request petsc/petsc!8202


# ac530a7e 03-Jun-2025 Pierre Jolivet <pierre@joliv.et>

Remove unnecessary braces around one-liners

git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\

Remove unnecessary braces around one-liners

git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\) {([^;]*);([^;]*)}$#\1\2 \(\3\)\4;\5#'

show more ...


# 390d3996 12-Aug-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'lindad/hypre-control-through-pmat' into 'main'

Change hypre PC option defaults based on hypre matrix memory location

See merge request petsc/petsc!8505


# 03db1824 11-Aug-2025 Alex Lindsay <alexlindsay239@gmail.com>

Make MatGetCurrentMemType first class API


# 934c28dd 22-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 09117800 22-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'zach/fixes-gpu-mi300a' into 'release'

MATHYPRE and Kokkos Fixes

See merge request petsc/petsc!8510


# f3d3cd90 09-Jul-2025 Zach Atkins <Zach.Atkins@colorado.edu>

Split KokkosDualViewSync into Host and Device versions


# fa415a6e 04-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/2025-04-03/remove-MatSetMPIAIJWithSplitSeqAIJ' into 'main'

Remove the private function MatSetMPIAIJWithSplitSeqAIJ

See merge request petsc/petsc!8273


# f18d1d10 03-Apr-2025 Junchao Zhang <jczhang@anl.gov>

Mat: remove the private function MatSetMPIAIJWithSplitSeqAIJ

after the great MR !8206


# 23386071 20-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stevendargaville/mat-kokkoscreatedevice' into 'main'

Added new API calls to allow kokkos matrices to be built with no host preallocation

See merge request petsc/petsc!8206


# c0c276a7 20-Mar-2025 sdargavi <s.dargaville@imperial.ac.uk>

Changes to allow building gpu matrices on the device.

Changed MatCreateMPIAIJWithSeqAIJ() so global sizes must be given to prevent reduction.

Changed MatCreateMPIAIJWithSeqAIJ() so B can be passed

Changes to allow building gpu matrices on the device.

Changed MatCreateMPIAIJWithSeqAIJ() so global sizes must be given to prevent reduction.

Changed MatCreateMPIAIJWithSeqAIJ() so B can be passed in with local indices, hence no compactification occurs.

Added MatCreateSeqAIJKokkosWithKokkosViews() which creates a Mat with no preallocation on the host.

Added test that checks building kokkos matrices without any host preallocation

show more ...


# 97fff7b2 07-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/2025-03-05/revise-PetscGetKokkosExecutionSpace' into 'main'

Return execution space instead of reference to simplify the code

See merge request petsc/petsc!8182


# 4df4a32c 07-Mar-2025 Junchao Zhang <jczhang@mcs.anl.gov>

Kokkos: return execution space instead of reference to simplify the code

A Kokkos execution space is a shared pointer. We don't need to reference it


# fd4e4c6a 25-Feb-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'adams/mat-rap-blocksize' into 'main'

propagates mat blocksize in PtAP

See merge request petsc/petsc!8143


# 39cfb508 25-Feb-2025 Mark Adams <524115-markadams4@users.noreply.gitlab.com>

propagates mat blocksize in PtAP


# b7b2c57c 05-Feb-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/2025-01-30/feature-support-AMD-MI300A' into 'main'

Add support of AMD MI300A

Closes #1703

See merge request petsc/petsc!8110


123456789