History log of /petsc/src/mat/tests/output/ex123_matis.out (Results 1 – 12 of 12)
Revision Date Author Comments
# de5d30bf 16-Jun-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/mathypre' into 'main'

cleanup mathypre

See merge request petsc/petsc!6528


# 651b1cf9 31-May-2023 Stefano Zampini <stefano.zampini@gmail.com>

Mat tests: add HYPRE COO tests

support COO with hacking permutation array of AIJ


# 04346f8c 09-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-07-20/add-clang-format' into 'main'

Use clang-format to format PETSc source code

See merge request petsc/petsc!5455


# 16406dc7 28-Jul-2022 Barry Smith <bsmith@mcs.anl.gov>

remove printing line numbers form example so output does not change with source code formatting


# 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 ...


# a686821c 04-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-rm-spaces-plurals' into 'main'

Remove unneeded spaces/plurals

See merge request petsc/petsc!5193


# 8cc725e6 01-May-2022 Pierre Jolivet <pierre@joliv.et>

Remove extra spaces and unwanted plurals


# 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


# 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 ...


# 6584f52a 11-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/matis-negative-indices' into 'main'

matis negative indices

See merge request petsc/petsc!4923


# cbc6b225 10-Mar-2022 Stefano Zampini <stefano.zampini@gmail.com>

MatSetPreallocationCOO: avoid MatHeaderMerge