| #
d4503c43
|
| 12-Feb-2009 |
Barry Smith <bsmith@mcs.anl.gov> |
Fortran interface to PetscViewerHDF5Open(), removed need for sorted indices for MatGetSubMatrices_MPIBAIJ() Some work on pflotran support
Hg-commit: bd711a0903616a5f534621b3527f4b43512bc612
|
| #
a85a5ba5
|
| 29-Jan-2009 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: 80ce29f5b087cb5c44dd8b0ec36b14a49dc7fba4
|
| #
76941f23
|
| 28-Jan-2009 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: 92d30fe428db07e99de2a9cd0051a102535da8e3
|
| #
fc195bd7
|
| 27-Jan-2009 |
Satish Balay <balay@mcs.anl.gov> |
merge from release
Hg-commit: 2602a5b005a31423b8d919a0adc5bc884a6f07cb
|
| #
052f0c41
|
| 26-Jan-2009 |
Barry Smith <bsmith@mcs.anl.gov> |
Removed bad use of PetscInt len variable as placeholder for what should be a size_t variable that is passed into PetscMalloc() calls. From: mark.vandoesburg@hetnet.nl Subject: Re: [PETSC #18943] Un
Removed bad use of PetscInt len variable as placeholder for what should be a size_t variable that is passed into PetscMalloc() calls. From: mark.vandoesburg@hetnet.nl Subject: Re: [PETSC #18943] Unable to allocate sufficient memory Date: January 26, 2009 4:56:52 PM CST
Hg-commit: 97dda86dd93d88798f8eed1a6128802961637cb3
show more ...
|
| #
bb2aa422
|
| 15-Nov-2008 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: e02bd69d1e9b73f5c8d61e83da411f12f8cb9e16
|
| #
335bbf16
|
| 14-Nov-2008 |
Hong Zhang <hzhang@mcs.anl.gov> |
merge
Hg-commit: d58f70d4c7f7a3dcf9b566c82063e66c58e67ce4
|
| #
14ca34e6
|
| 14-Nov-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
From: mstefano@milan.westerngeco.slb.com Subject: [Fwd: Re: [PETSC #18599] Valgrind problem with MatGetSubMatrix] Date: November 14, 2008 2:30:37 AM CST To: petsc-maint@mcs.anl.gov Cc: pets
From: mstefano@milan.westerngeco.slb.com Subject: [Fwd: Re: [PETSC #18599] Valgrind problem with MatGetSubMatrix] Date: November 14, 2008 2:30:37 AM CST To: petsc-maint@mcs.anl.gov Cc: petsc-maint@mcs.anl.gov
I think I've found the bug.
Look at src/mat/impls/aij/seq/aij.c, line 1699.
There, variable "i" is declared as a PetscInt.
Then, look at line 1710 or 1712.
The variable "i" is used to get the truth answer from the ISSorted function.
As long as you don't build PETSc with --with-64-bit-indices, all is OK.
But (and this is my case) if you built PETSc with 64 bit indices, the PetscTruth data type is smaller (as byte size) than PetscInt. The result is that only part of the bytes of the "i" variable are initialized by ISSorted.
I strongly suggest to add a new variable to be used exclusively as a PetscTruth flag for the ISSorted calls.
Fixed this bug all over the place
Hg-commit: 79369c761f62f38e25800abc8725233db2a5486a
show more ...
|
| #
2d200336
|
| 06-Nov-2008 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: af487d5b45dae01d0566132d57158d0286d6a750
|
| #
7c4f633d
|
| 03-Nov-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
removed -I$PETSC_DIR from make system and changed the corresponding #include "src/dsdsdsds" to "../src/sdsdsds" in the source code
Hg-commit: 6e3c4cc4b4bfcb366bae9b71afcb5009c1f0429d
|
| #
404197b7
|
| 26-Sep-2008 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: bfd3a83a4adc1cd389f373bde87fe159fad91161
|
| #
5d0c19d7
|
| 26-Sep-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
ISGetIndices() returns const array, it is not something that should be changed
Hg-commit: 279c07e55dc4d24fe01a982d22cefc6e74f39257
|
| #
d0f46423
|
| 10-Sep-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
fixed some memory bleeding changed PetscMap in Vec and Mat to be an allocated shared structure with referencing counting. Shared by Vecs obtained with VecDuplicate() and MatGetVecs()
Hg-commit
fixed some memory bleeding changed PetscMap in Vec and Mat to be an allocated shared structure with referencing counting. Shared by Vecs obtained with VecDuplicate() and MatGetVecs()
Hg-commit: 9cebf4ba1b4632fc12cb8afbc01d420ee612ad72
show more ...
|
| #
02a4688f
|
| 30-Jan-2008 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: aa60ce221edc378e86911d208ed382870b396dc2
|
| #
b9f7ace7
|
| 30-Jan-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
missing \ in macro missing cast from float to int
Hg-commit: 918e1a98b59ad4e72c8262f670f98e21f090abf4
|
| #
1cbcd9c4
|
| 29-Jan-2008 |
Barry Smith <bsmith@mcs.anl.gov> |
finished adding error checking for the (PetscMPIInt) cast (i.e. changed to PetscMPIIntCast())
Hg-commit: 98a4e496a0acdf68e62dc611a6baa682b881b8ca
|
| #
3be44c43
|
| 18-Nov-2007 |
Barry Smith <bsmith@mcs.anl.gov> |
commit aFTERmerge
Hg-commit: 45a698803bd457bdc2ba32be5035e710250a5320
|
| #
6f3d5618
|
| 31-Oct-2007 |
Dmitry Karpeev <karpeev@mcs.anl.gov> |
Merge.
Hg-commit: 4a9e5a2b97bdb9073e83eff56096e46ac4ef2230
|
| #
60f69c44
|
| 15-Oct-2007 |
Matthew Knepley <knepley@mcs.anl.gov> |
Merge
Hg-commit: ae7ad2b71b1fdcfb27898e923a2c03bd62c86a54
|
| #
781b3001
|
| 14-Oct-2007 |
Barry Smith <bsmith@mcs.anl.gov> |
commit after merge
Hg-commit: 4e945c9820f08f3e5a1bc871ec50d7ccb0b7454e
|
| #
e0156e0b
|
| 11-Oct-2007 |
Satish Balay <balay@mcs.anl.gov> |
merge
Hg-commit: 8b48556a285e293c04f497a3a1e40ac96cfd5016
|
| #
780a600e
|
| 05-Oct-2007 |
Satish Balay <balay@mcs.anl.gov> |
merge
Hg-commit: b5a05984274c84515a795ed75eef9d3b27ba97f1
|
| #
442648ef
|
| 04-Oct-2007 |
Lisandro Dalcin <dalcinl@gmail.com> |
merge
Hg-commit: 8b955b66410cbc923a4e1233fdeaca7fbf3e5d5d
|
| #
7adad957
|
| 03-Oct-2007 |
Lisandro Dalcin <dalcinl@gmail.com> |
changes for solving the strict aliasing issue in PetscObject and derived
Hg-commit: 278faecc91564f5495fa9f7d48380d547995fa45
|
| #
1e2582c4
|
| 04-Oct-2007 |
Barry Smith <bsmith@mcs.anl.gov> |
fixed many calls to PetscInfo to include the object the information is associated with. This should fix petsc-maint 16853 -info_exclude vec,mat
Hg-commit: 76af22820baddbfcd9c2a4a4f02bebf64ea72ef9
|