History log of /petsc/src/mat/impls/aij/mpi/mpiaij.c (Results 601 – 625 of 2754)
Revision Date Author Comments
# b82a1fea 08-Jun-2019 Richard Mills <rtm@eecs.utk.edu>

Merged in rmills/fix-doc-paradigm-spelling/maint (pull request #1765)

Fixed misspelling of "paradigm" throughout manual pages.


# f6f02116 08-Jun-2019 Richard Tran Mills <rmills@rmills.org>

Fixed misspelling of "paradigm" throughout manual pages.


# 613bfe33 02-Jun-2019 BarryFSmith <bsmith@mcs.anl.gov>

Merged in barry/update-collective-on (pull request #1744)

Update the use of Collective on in the manual pages to reflect the new style


# d083f849 01-Jun-2019 Barry Smith <bsmith@mcs.anl.gov>

Update the use of Collective on in the manual pages to reflect the new style

Commit-type: style-fix, documentation
Thanks-to: Patrick Sanan <patrick.sanan@gmail.com>


# fa54792a 29-May-2019 Patrick Sanan <patrick.sanan@gmail.com>

Merged in psanan/man-pages-remove-keywords (pull request #1717)

Man pages: Remove .keywords fields

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# bfcb38ea 27-May-2019 Patrick Sanan <patrick.sanan@gmail.com>

Man pages: remove .keywords: fields

This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20),
but it doesn't seem to be unif

Man pages: remove .keywords: fields

This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20),
but it doesn't seem to be uniformly used or maintained.

Thus, remove all .keywords: fields, and a following blank line, if present.

This is accomplished with GNU sed (gsed on OS X), with the following commands.
*Warning* that this type of command can corrupt a .git directory,
so be cautious in reusing or modifying these commands. They first look
for and delete matching lines with a following line consisting of only whitespace,
and then delete any remaining matching lines.

find src/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} +
find src/ -type f -exec gsed -i '/keywords:/d' {} +
find include/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} +
find include/ -type f -exec gsed -i '/keywords:/d' {} +

Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed

show more ...


# b72fa766 16-May-2019 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/fix-io-gmsh (pull request #1660)

Binary I/O And Gmsh DMPlex Reader

Approved-by: Matthew Knepley <knepley@gmail.com>
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 15a258e2 15-May-2019 Fande Kong <fdkong.jd@gmail.com>

Merged in Fande-Kong/mpiptap-log_flops1 (pull request #1640)

MPIPtAP: Correct logflops for allatonce and allatonce_merged

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 0c0d7e18 13-May-2019 Fande Kong <fdkong.jd@gmail.com>

MatSetValues_MPIAIJ/SeqAIJ: added logflops for additions


# 9860990e 03-May-2019 Lisandro Dalcin <dalcinl@gmail.com>

Binary I/O: Various fixes and enhancements

* Change PetscBinary[Synchronized]Read() to allow for reading
items up to EOF without erroring
* Fix PetscViewerBinaryRead() to properly return the numbe

Binary I/O: Various fixes and enhancements

* Change PetscBinary[Synchronized]Read() to allow for reading
items up to EOF without erroring
* Fix PetscViewerBinaryRead() to properly return the number of items read
* Fix PetscViewerRead() to prevent infinite loops at EOF
* Various fixes for PetscDataType PETSC_COMPLEX

show more ...


# 5e05a691 10-May-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# 39f5b42d 10-May-2019 Junchao Zhang <junchao.zhang@gmail.com>

Merged in jczhang/fix-matsetrandom-mpiaij (pull request #1647)

Fix a MatSetRandom() bug related to unassembled MATMPIAIJ matrices

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 679944ad 09-May-2019 Junchao Zhang <jczhang@mcs.anl.gov>

Fix a MatSetRandom bug with unassembled MATMPIAIJ

When doing MatSetRandom on a preallocated but unassembled matrix X, we can not
simply calling MatSetRandom on X's B. Since B is not assembled, it ha

Fix a MatSetRandom bug with unassembled MATMPIAIJ

When doing MatSetRandom on a preallocated but unassembled matrix X, we can not
simply calling MatSetRandom on X's B. Since B is not assembled, it has a column
size as wide as X. Calling MatSetRandom(B,r) might generate nonzeros belonging
to X's A.

Reported-by: Jakub Kruzik <jakub.kruzik@vsb.cz>

show more ...


# 89d6d5e9 23-Apr-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# 264b3dff 23-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

Merged in stefano_zampini/fix-matcopy-sbaij (pull request #1571)

Fix SBAIJ

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 5d2a9ed1 22-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

Mat{MPI|MPISB|MPIB|Seq|SeqB|SeqSB}AIJSetPreallocation: optimize nonzeros

set number of columns of offdiag blocks to zero for sequential cases
no need to allocate more than the the number of columns

Mat{MPI|MPISB|MPIB|Seq|SeqB|SeqSB}AIJSetPreallocation: optimize nonzeros

set number of columns of offdiag blocks to zero for sequential cases
no need to allocate more than the the number of columns for sequential matrices

Update outputs for testsuite

show more ...


# a323099b 21-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

housekeeping

remove trailing blanks
remove functions that are no longer part of PETSc


# d1820593 17-Apr-2019 Satish Balay <balay@mcs.anl.gov>

Merge branch 'maint'


# 2b91989a 17-Apr-2019 Satish Balay <balay@mcs.anl.gov>

Merged in stefano_zampini/misc-fixes/maint (pull request #1550)

Stefano zampini/misc fixes/maint

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# a92ad425 15-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

MATMPIAIJ: Fix MatZeroRows and MatZeroRowsColumns

skip diagonal set if row index > number of global columns

x AND b must be present at the same time

raise error when layouts are not congruent (ins

MATMPIAIJ: Fix MatZeroRows and MatZeroRowsColumns

skip diagonal set if row index > number of global columns

x AND b must be present at the same time

raise error when layouts are not congruent (instead of segfaulting)

local nonew on diagonal block may be different across comm -> Always reduce

When asked to not keep the nonzero pattern with non-congruent layouts
it is better off allowing a small reallocation to happen instead of erroring

show more ...


# 569a6e9e 11-Apr-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# a0e5c692 11-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

Merged in stefano_zampini/feature-improve-matviewmpiaij-ascii-maint (pull request #1519)

MatView_MPIAIJ_ASCIIorSocket: speedup code

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 71e56450 08-Apr-2019 Stefano Zampini <stefano.zampini@gmail.com>

MatView_MPIAIJ_ASCIIorSocket: speedup code

This code in not performance critial, but it took 3 hours to dump a 2000x2000 MPIAIJ matrix with dense values
This is what we obtain by calling MatViewFrom

MatView_MPIAIJ_ASCIIorSocket: speedup code

This code in not performance critial, but it took 3 hours to dump a 2000x2000 MPIAIJ matrix with dense values
This is what we obtain by calling MatViewFromOptions on a MATSHELL in parallel

show more ...


# 8000f006 15-Mar-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of bitbucket.org:petsc/petsc


# 553225e2 14-Mar-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/jczhang/vecscat-in-sf' [PR #1396]


1...<<21222324252627282930>>...111