| 29138a1e | 13-Jan-2014 |
Karl Rupp <rupp@iue.tuwien.ac.at> |
MatMultAdd_SeqAIJCUSP(): Fixed incorrect calculation when using the compressed row format.
Instead of z = y + Ax, the implementation computed z = Ax, which caused MPI-based calculations with more th
MatMultAdd_SeqAIJCUSP(): Fixed incorrect calculation when using the compressed row format.
Instead of z = y + Ax, the implementation computed z = Ax, which caused MPI-based calculations with more than one rank to fail.
show more ...
|
| b78526a6 | 20-Dec-2013 |
Jose E. Roman <jroman@dsic.upv.es> |
Correctly check input type of Mat argument in MatMPIAIJGetLocalMat
MatMPIAIJGetLocalMat requires MPIAIJ matrix as input, but it used a explicit cast in the declaration of variables, before checking
Correctly check input type of Mat argument in MatMPIAIJGetLocalMat
MatMPIAIJGetLocalMat requires MPIAIJ matrix as input, but it used a explicit cast in the declaration of variables, before checking that the input Mat is actually of this type.
show more ...
|
| dcca6d9d | 03-Dec-2013 |
Jed Brown <jedbrown@mcs.anl.gov> |
PetscMalloc[2-7]: remove type arguments, infer from pointer type
This change can be performed almost entirely by this script:
git grep -l PetscMalloc[2-7] $1 | xargs perl -pi \ -e ' s@PetscMalloc
PetscMalloc[2-7]: remove type arguments, infer from pointer type
This change can be performed almost entirely by this script:
git grep -l PetscMalloc[2-7] $1 | xargs perl -pi \ -e ' s@PetscMalloc2\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc2($1,$3,$4,$6)@; s@PetscMalloc3\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc3($1,$3,$4,$6,$7,$9)@; s@PetscMalloc4\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc4($1,$3,$4,$6,$7,$9,$10,$12)@; s@PetscMalloc5\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc5($1,$3,$4,$6,$7,$9,$10,$12,$13,$15)@; s@PetscMalloc6\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc6($1,$3,$4,$6,$7,$9,$10,$12,$13,$15,$16,$18)@; s@PetscMalloc7\(([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+),([^,;()]+)\)@PetscMalloc7($1,$3,$4,$6,$7,$9,$10,$12,$13,$15,$16,$18,$19,$21)@; '
show more ...
|
| bd558d9e | 19-Nov-2013 |
Barry Smith <bsmith@mcs.anl.gov> |
I have no freaking idea what git did or why this file is changed but Jed is most definitely wrong about thinking having unmerged branches to master hanging around being harmless. Not everyone remembe
I have no freaking idea what git did or why this file is changed but Jed is most definitely wrong about thinking having unmerged branches to master hanging around being harmless. Not everyone remembers everything they did two months ago or two hours ago.
show more ...
|