History log of /petsc/src/mat/impls/baij/mpi/mpibaij.c (Results 926 – 950 of 1562)
Revision Date Author Comments
# a4457457 02-Jul-2010 Victor Minden <victorminden@gmail.com>

commit after merge

Hg-commit: 7678db4dbf4316aad0bed3ee83df6ef0e35b9452


# abd38a8f 02-Jul-2010 Barry Smith <bsmith@mcs.anl.gov>

fixed spelling mistakes

Hg-commit: b2d97726b1194cfd912206efd2b1e1bb985ce3eb


# 5bba2384 02-Jul-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

MatLoad interface upgrade complete : Replaced all MatLoadnew() to MatLoad()

Hg-commit: c13fd97592f26133f7c2c5fcb35b1f0bb383ee5a


# fac7e3cd 02-Jul-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Removed all dead previous MatLoad related code

Hg-commit: 103f343af4c26e024c9483c4b45581631c70a977


# 7842634f 02-Jul-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Upgrading to new MatLoad interface : Replaced all use of MatLoad() with MatLoadnew()

Hg-commit: ade248946c12ce11ac537da7360f9babe1978b39


# 83190594 19-Jun-2010 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 542d892f16c23aadbd33af6b9038a31d4ed23247


# 4683f7a4 19-Jun-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Added MPIBAIJ implementation for new matload interface.

Hg-commit: 2c1616ad4a8f2888b0679691da3ad5f84d7d371e


# 05772624 07-Jun-2010 Victor Minden <victorminden@gmail.com>

commit after merge

Hg-commit: 8eb1b0a369f9ab4b13dd8ccc92d9c82da0822d87


# ad8e3b70 07-Jun-2010 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: 534539781f71eb6ba71ef89f4c82d23acf24e8e4


# fef13f97 04-Jun-2010 Barry Smith <bsmith@mcs.anl.gov>

undid the MatSeqXAIJReallocation conversion from macro to function because it was broken.

Hg-commit: dea7891b2ca43e5c3492cc1ddf826db987b36c10


# 4b9149d0 04-Jun-2010 Victor Minden <victorminden@gmail.com>

Added functionality to do VecScale_Seq with CUDA

Hg-commit: 03fc0a1743fa5058e74e5c64d61114027987800a


# 864a5514 04-Jun-2010 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 46185e7fd336cffd34e37d6fb3000ca9cd647fbe


# 936c6a71 04-Jun-2010 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: f22d1eddb75a19febb7e6bbaead2dc4196ee1cfa


# 17454e89 04-Jun-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Conversion of a few macros to static inline functions
Fixed fill ratio info for SeqAIJ LU symbolic factorization

Hg-commit: 70f9e9faca93960c98b60d63404804672fe0204b


# 2692d6ee 22-May-2010 Barry Smith <bsmith@mcs.anl.gov>

fixed XXXType #define names that had underscores in them such as MAT_SOLVER_SUPERLU MATORDERING_ND or PETSC_VIEWER_ASCII to not have _ also updated style guide to clearly indicate this.

Hg-commit: 9

fixed XXXType #define names that had underscores in them such as MAT_SOLVER_SUPERLU MATORDERING_ND or PETSC_VIEWER_ASCII to not have _ also updated style guide to clearly indicate this.

Hg-commit: 9ee752148eed3df65feb0f7eb0686798c3c0621b

show more ...


# b23f91a4 18-May-2010 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: 3d6e115ed50e0a91aeb25dbd4b36559e2e6d6008


# 265428aa 16-May-2010 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: c3dbc987bfe0a0841687eb44f966a4d1e14d4dc0


# bccb9932 14-May-2010 Shri Abhyankar <abhyshr@mcs.anl.gov>

Merged MatGetFactor seq and mpi routines for MUMPS.
Replaced "PetscTruth valOnly" input to MatConvertToTriples with "MatReuse reuse"
Added nightly test cases.

Hg-commit: 98eb5544568b0e3e2c944849bbdd

Merged MatGetFactor seq and mpi routines for MUMPS.
Replaced "PetscTruth valOnly" input to MatConvertToTriples with "MatReuse reuse"
Added nightly test cases.

Hg-commit: 98eb5544568b0e3e2c944849bbdd111b0905ded9

show more ...


# 65e19b50 11-May-2010 Barry Smith <bsmith@mcs.anl.gov>

the last work I will do on reformatting use of SETERRQX() and passing in the appropriate comm; I am bored to tears

Hg-commit: 9e0ef782022dbdc055a74473b60f135ee06122ac


# 569c3c03 11-May-2010 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 2ef3359e5b95ab3dd364cca5103b3c9cd01e67aa


# 88dfc225 11-May-2010 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: 55b7a9d1500c75e20db02f207b9744d4e56162d1


# cb9801ac 11-May-2010 Jed Brown <jed@59A2.org>

Make error macros nest in cascading if statements, revert Hong's reversion of Barry's breakage

The

#define MACRO(x,y) do { multiple(x); statements(y); } while (0)

construct requires the user to

Make error macros nest in cascading if statements, revert Hong's reversion of Barry's breakage

The

#define MACRO(x,y) do { multiple(x); statements(y); } while (0)

construct requires the user to provide a closing semicolon (this patch
fixes this problem in many places), and does the correct thing in
cascading if statements. Note that the alternative

#define MACRO(x,y) { multiple(x); statements(y); }

expands

if (cond) MACRO(x);
else other();

as

if (cond) { multiple(x); statements; }
;
else other();

and the final statement is an else with no matching if. I suggest that
PETSc adopt the do {} while (0) construct anywhere that it currently
uses compound statements within unguarded braces (note that most PETSc
macros return a value and thus do not have this problem).

Hg-commit: ecf653b2f268465b7e7cb7569f7b80897acb163a

show more ...


# 1be63e66 10-May-2010 Hong Zhang <hzhang@mcs.anl.gov>

bugfix: add missing {}

Hg-commit: 498898a8e7d85ea4538b82e22c5c9078234b8467


# c1235816 10-May-2010 Barry Smith <bsmith@mcs.anl.gov>

removed unneeded { around SETERRQX() calls}

Hg-commit: d55148dbbe8a10f500a7e181b91ba166aec6f665


# e7e72b3d 08-May-2010 Barry Smith <bsmith@mcs.anl.gov>

changed many calls to SETERRQ() to use correct (non-PETSC_COMM_SELF) communicator
reformated many badly formatted SETERRQ(); there was nonsense like {} around them or they were wrongly on a seperate

changed many calls to SETERRQ() to use correct (non-PETSC_COMM_SELF) communicator
reformated many badly formatted SETERRQ(); there was nonsense like {} around them or they were wrongly on a seperate line

Hg-commit: 7550f3779f18eaf7ce68bae52b964532aa97c1d5

show more ...


1...<<31323334353637383940>>...63