History log of /petsc/src/vec/vec/tutorials/ex31.c (Results 1 – 23 of 23)
Revision Date Author Comments
# 3b751433 21-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 73e257f9 20-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-10-17/fix-matlab-build/release' into 'release'

Fix failures in building Matlab interfaces due to different sizes of integer function arguments.

See merge request petsc/pets

Merge branch 'barry/2025-10-17/fix-matlab-build/release' into 'release'

Fix failures in building Matlab interfaces due to different sizes of integer function arguments.

See merge request petsc/petsc!8795

show more ...


# 66218dbd 17-Oct-2025 Barry Smith <bsmith@mcs.anl.gov>

Fix failures in building Matlab interfaces due to different sizes of integer function arguments.


# 732aec7a 22-Sep-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/remove-cast' into 'main'

Use NULL or nullptr instead of casted 0

See merge request petsc/petsc!7857


# c8025a54 21-Sep-2024 Pierre Jolivet <pierre@joliv.et>

Use NULL or nullptr instead of casted 0


# 061e922f 22-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-21/2-bike-2-shed' into 'main'

Feature: Bicycle Storage Facility 2

See merge request petsc/petsc!5661


# d71ae5a4 21-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

source code format changes due to .clang-format changes


# 7c6f9176 21-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-09-09/cleanup-matlab-configure' into 'main'

minor cleanup for matlab engine

See merge request petsc/petsc!5608


# e0f5bfbe 09-Sep-2022 Barry Smith <bsmith@mcs.anl.gov>

Work around bug in Matlab Engine 2021b support, improve formatting of matlab engine tutorial example

Commit-type: housekeeping
/spend 20m


# 58d68138 23-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-21/clang-format-source' into 'main'

format repository with clang-format

See merge request petsc/petsc!5541


# 9371c9d4 22-Aug-2022 Satish Balay <balay@mcs.anl.gov>

clang-format: convert PETSc sources to comply with clang-format


# 5cab5458 26-Jul-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-07-23/add-petscbeginuser' into 'main'

Add PetscFunctionBeginUser to all PETSc C/C++ examples

See merge request petsc/petsc!5470


# 327415f7 23-Jul-2022 Barry Smith <bsmith@mcs.anl.gov>

Add PetscFunctionBeginUser to all PETSc C/C++ examples

Now the stack frames will contain the main program and the correct line numbers in them

git ls-files | egrep "(tutorials|tests)" | xargs sed -

Add PetscFunctionBeginUser to all PETSc C/C++ examples

Now the stack frames will contain the main program and the correct line numbers in them

git ls-files | egrep "(tutorials|tests)" | xargs sed -i "s?\(PetscCall(PetscInitialize(&argc\)?PetscFunctionBeginUser;\n \1?g"

Commit-type: error-checking, testing-fix
/spend 15m

show more ...


# f882803c 26-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-02-23/variadic-chkerr' into 'main'

Variadic CHKERRQ()

See merge request petsc/petsc!4889


# 9566063d 25-Mar-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

The great renaming:

- CHKERRQ() -> PetscCall()
- CHKERRV() -> PetscCallVoid()
- CHKERRMPI() -> PetscCallMPI()
- CHKERRABORT() -> PetscCallAbort()
- CHKERRCONTINUE() -> PetscCallContinue()
- CHKERRXX

The great renaming:

- CHKERRQ() -> PetscCall()
- CHKERRV() -> PetscCallVoid()
- CHKERRMPI() -> PetscCallMPI()
- CHKERRABORT() -> PetscCallAbort()
- CHKERRCONTINUE() -> PetscCallContinue()
- CHKERRXX() -> PetscCallThrow()
- CHKERRCXX() -> PetscCallCXX()
- CHKERRCUDA() -> PetscCallCUDA()
- CHKERRCUBLAS() -> PetscCallCUBLAS()
- CHKERRCUSPARSE() -> PetscCallCUSPARSE()
- CHKERRCUSOLVER() -> PetscCallCUSOLVER()
- CHKERRCUFFT() -> PetscCallCUFFT()
- CHKERRCURAND() -> PetscCallCURAND()
- CHKERRHIP() -> PetscCallHIP()
- CHKERRHIPBLAS() -> PetscCallHIPBLAS()
- CHKERRHIPSOLVER() -> PetscCallHIPSOLVER()
- CHKERRQ_CEED() -> PetscCallCEED()
- CHKERR_FORTRAN_VOID_FUNCTION() -> PetscCallFortranVoidFunction()
- CHKERRMKL() -> PetscCallMKL()
- CHKERRMMG() -> PetscCallMMG()
- CHKERRMMG_NONSTANDARD() -> PetscCallMMG_NONSTANDARD()
- CHKERRCGNS() -> PetscCallCGNS()
- CHKERRPTSCOTCH() -> PetscCallPTSCOTCH()
- CHKERRSTR() -> PetscCallSTR()
- CHKERRTC() -> PetscCallTC()

show more ...


# b122ec5a 24-Mar-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

PetscInitialize() and PetscFinalize() wrapped:

- ierr = PetscInitialize();if (ierr) return ierr;
+ CHKERRQ(PetscInitialize());

- ierr = PetscFinalize();
- return ierr;
+ CHKERRQ(PetscFinalize());
+

PetscInitialize() and PetscFinalize() wrapped:

- ierr = PetscInitialize();if (ierr) return ierr;
+ CHKERRQ(PetscInitialize());

- ierr = PetscFinalize();
- return ierr;
+ CHKERRQ(PetscFinalize());
+ return 0;

show more ...


# 5f80ce2a 24-Feb-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

chkerr and friends wrapped


# 82a6ae78 28-Jul-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-some-missing-chkerr' into 'main'

Some missing CHKERR[Q|MPI]

See merge request petsc/petsc!4190


# 1e1ea65d 27-Jul-2021 Pierre Jolivet <pierre@joliv.et>

Some missing CHKERR[Q|MPI]


# ee6dfa67 03-Dec-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-11-10/add-matlab-engine-host' into 'master'

Barry/2020 11 10/add matlab engine host

See merge request petsc/petsc!3443


# 57a177ad 11-Nov-2020 Barry Smith <bsmith@mcs.anl.gov>

Add -matlab_engine_host hostname runs the Matlab on the machine hostname

Also cleaned up error handling for PETSC_MATLAB_ENGINE_()

Commit-type: error-checking, feature
/spend 1.5h
Reported-by: Kaus

Add -matlab_engine_host hostname runs the Matlab on the machine hostname

Also cleaned up error handling for PETSC_MATLAB_ENGINE_()

Commit-type: error-checking, feature
/spend 1.5h
Reported-by: Kaustubh Khedkar <kkhedkar9879@sdsu.edu>

show more ...


# 8a1e0216 11-Jun-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-06-08/fix-matlabengine-details' into 'master'

MacOS needs -Wl,-rpath for Matlab Engine; reorganize simplify MatlabEngine.py

See merge request petsc/petsc!2846


# 69cdbcb9 11-Jun-2020 Barry Smith <bsmith@mcs.anl.gov>

MacOS needs -Wl,-rpath for Matlab Engine; reorganize simplify MatlabEngine.py
Change --with-matlabengine-lib to --with-matlab-engine-lib to match --with-matlab-engine
Move Matlab vec test to tutorial

MacOS needs -Wl,-rpath for Matlab Engine; reorganize simplify MatlabEngine.py
Change --with-matlabengine-lib to --with-matlab-engine-lib to match --with-matlab-engine
Move Matlab vec test to tutorial directory
Add make check for Matlab engine

Commit-type: error-checking, bug-fix, portability-fix, testing-fix, style-fix

show more ...