History log of /petsc/src/mat/impls/sbaij/mpi/mpisbaij.c (Results 651 – 675 of 1197)
Revision Date Author Comments
# 778a2246 09-Apr-2012 Barry Smith <bsmith@mcs.anl.gov>

VecCreateXXXWithArray() now takes a bs argument since there is no other way to pass the block size in during creation process

Hg-commit: 465282368ed7696decd83c3d3b111f39348a7d40


# 535b19f3 08-Apr-2012 Barry Smith <bsmith@mcs.anl.gov>

removed processing of -mat_block_size from MatXXXSetPreallocation() routines moved to MatSetFromOptions()
fixed various locations that reset blocksize after Mat was setup

Hg-commit: 253c882709a78d62

removed processing of -mat_block_size from MatXXXSetPreallocation() routines moved to MatSetFromOptions()
fixed various locations that reset blocksize after Mat was setup

Hg-commit: 253c882709a78d627d884888fbdb4a7528173c93

show more ...


# f73d5cc4 08-Apr-2012 Barry Smith <bsmith@mcs.anl.gov>

MatSetSize() called after MatSetUp() is now forbidden even for Dense matrices
MatSetBlockSize() must be called beofre MatSetUp()/ MatXXXSetPreallocation() for all matrices
Fixed vec nest example that

MatSetSize() called after MatSetUp() is now forbidden even for Dense matrices
MatSetBlockSize() must be called beofre MatSetUp()/ MatXXXSetPreallocation() for all matrices
Fixed vec nest example that pushed format that prevented values from being printed

Hg-commit: 80ec81eb9db92735994e950eda2d2db6657bb6cb

show more ...


# ab9863d7 02-Apr-2012 Barry Smith <bsmith@mcs.anl.gov>

namespaced some Mat utilities that lacked the Mat

Hg-commit: 6f712ebe4bb5ddbcbf32ebd864d408e3a35085b0


# 2632470a 05-Mar-2012 Jed Brown <jed@59A2.org>

merge SNES/DM refactor

Hg-commit: 31d66a4917111e3b9e87bf19170c2c9421b4e8be


# 6816a49f 02-Mar-2012 Barry Smith <bsmith@mcs.anl.gov>

minor nightly build fixes

Hg-commit: 31540b560fddd11bab6aca79c9110d92099e008e


# 69b1f4b7 02-Mar-2012 Barry Smith <bsmith@mcs.anl.gov>

changed MatCreateMPIXXX() to MatCreateXXX() since that is what they are

Hg-commit: 88fb4066e05405d3c444fb00dd00ab15e805b3e3


# 51322221 28-Feb-2012 Jungho Lee <julee@mcs.anl.gov>

commit after merge

Hg-commit: e8d19a834d936a4816c3abf3af0b68733c00be11


# 1037da18 14-Feb-2012 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: 0db928480d979c13a2377936075c7720438182bd


# 5080c13b 14-Feb-2012 Matthew G Knepley <knepley@gmail.com>

Now MatSetValues() does not automatically mark the matrix as unassembled
- Individual types set the assembly flag if values need to be communicated
- This is done to allow programming in the followin

Now MatSetValues() does not automatically mark the matrix as unassembled
- Individual types set the assembly flag if values need to be communicated
- This is done to allow programming in the following way:
for(r = rStart; r < rEnd; ++r) {
MatGetRow()
<transform values>
MatRestoreRow()
MatSetValues()
}

Hg-commit: 1fc53ac2b8ab5649a32e5123d93f6c2f69dbdd4d

show more ...


# 38ea2233 01-Feb-2012 Matthew G Knepley <knepley@gmail.com>

Merge

Hg-commit: da7192eda3c2721456f07edf54ad1d0c14243f79


# 4994cf47 31-Jan-2012 Jed Brown <jed@59A2.org>

Remove MatSetUpPreallocation() and MatPreallocated(). MatSetUp() required if not preallocated. Unify error reporting.

Hg-commit: 9dd5fa086e48409435f8bacb456e7397da336895


# 6ba663aa 06-Nov-2011 Jed Brown <jed@59A2.org>

Mat preallocation: check valid type and logically collective block size

Hg-commit: 14994399c05663553b5763e55847cd01074430ab


# c2fc9fa9 06-Nov-2011 Barry Smith <bsmith@mcs.anl.gov>

reorganized SNESVI to two solvers SNESVIRS and SNESVISS in seperate directories without being intertwined though they share some common code
removed rsaug from being built since is broken

Hg-commit

reorganized SNESVI to two solvers SNESVIRS and SNESVISS in seperate directories without being intertwined though they share some common code
removed rsaug from being built since is broken

Hg-commit: 31c8ce4101ddfbfe4fc6d005d66ef14f58ee082a

show more ...


# 8f1a2a5e 12-Aug-2011 Barry Smith <bsmith@mcs.anl.gov>

changed sqrt() to PetscSqrtReal() to work properly with __float128
changed some %G to use %14.12e and (double) to work with __float128

Hg-commit: a8faa4e64896cf76f3f64094484ef5e06761417b


# 42951b8f 27-May-2011 Dmitry Karpeev <karpeev@mcs.anl.gov>

Merge.

Hg-commit: c1943a07162526276566519aa6187052e11ecc3d


# 0e63999f 24-May-2011 Jungho Lee <julee@mcs.anl.gov>

commit after merge
:w!

Hg-commit: 252b7df528f9cdb484d150ba2d30e13a98447883


# 1e1e43fe 14-May-2011 Barry Smith <bsmith@mcs.anl.gov>

various MatDuplicate_XXX() that previously used PetscLayoutCopy() now use PetscLayoutReference() to share the same layout.

Hg-commit: fd9a32ce98293ea5f22d7487fd95e4b6f875cb6c


# 2576faa2 21-Jan-2012 Jed Brown <jed@59A2.org>

Fixes for insertion error options.

Option should be set if "real" preallocation information was
provided. If PETSC_DECIDE was used, then do not error. The option is
inherited through a DisAssemble_*

Fixes for insertion error options.

Option should be set if "real" preallocation information was
provided. If PETSC_DECIDE was used, then do not error. The option is
inherited through a DisAssemble_* operation.

Hg-commit: e675ef955f926f7569d867832ae3d74f566041a1

show more ...


# 95742e49 19-Jan-2012 Barry Smith <bsmith@mcs.anl.gov>

changed docs about preallocating diagonal entries of matrix to only when planning to factor

Hg-commit: 62debd9818aa7a0dec4c1125f964afa7ec1bc5c4


# 5a262507 19-Jan-2012 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: defcbc7d2f2fb488acee2669a22ffa3e39f10043


# 2b82e772 17-Jan-2012 Satish Balay <balay@mcs.anl.gov>

mat_view routines intentionaly set low preallocation - so also disable MAT_NEW_NONZERO_LOCATION_ERR

Hg-commit: edc5daef6e31f57103f93b02b118ea3971db190f


# 7827cd58 16-Jan-2012 Jed Brown <jed@59A2.org>

Preallocation routines set MAT_NEW_NONZERO_ALLOCATION_ERR

Hg-commit: 631dbd3be1c5a3778cfbb484eb5cec7d7e4571a3


# 639d86e3 13-Jan-2012 Sean Farley <sean@mcs.anl.gov>

Merge

Hg-commit: 0fb617426806c222fb6fb5e47365b6c3688c614c


# d39137a2 12-Jan-2012 Barry Smith <bsmith@mcs.anl.gov>

commit after merge

Hg-commit: d540875a63b3c979c82b6a7fa7f062571e906d10


1...<<21222324252627282930>>...48