History log of /petsc/src/ts/impls/bdf/bdf.c (Results 101 – 119 of 119)
Revision Date Author Comments
# 2ffb9264 01-May-2017 Lisandro Dalcin <dalcinl@gmail.com>

TSAdapt: Refactor handling of default adapt type

* Let TS subtypes state its preference for adaptivity
* Methods without embedded error estimators prefer TSADAPTNONE
* If not set, use TS_EXACTFINALT

TSAdapt: Refactor handling of default adapt type

* Let TS subtypes state its preference for adaptivity
* Methods without embedded error estimators prefer TSADAPTNONE
* If not set, use TS_EXACTFINALTIME_MATCHSTEP when using adaptivity

* Remove command line option -ts_theta_adapt
* Use `-ts_adapt_type basic` to turn on adaptivity in TSTHETA

* Remove command line option -ts_alpha_adapt
* Remove routine TSAlphaUseAdapt() and TSAlpha2UseAdapt()
* Use `-ts_adapt_type basic` to turn on adaptivity in TSALPHA/TSALPHA2

show more ...


# 42e868c1 01-May-2017 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/refactor-ts-adapt (pull request #669)

TSAdapt: Refactor interface and implementations

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


# 1917a363 24-Apr-2017 Lisandro Dalcin <dalcinl@gmail.com>

TSAdapt: Refactor interface and implementations

* Move the handling of step limits, clipping factors, and safety factors
to the base TSAdapt type to simplify implementation of subtypes.
* Add TSAd

TSAdapt: Refactor interface and implementations

* Move the handling of step limits, clipping factors, and safety factors
to the base TSAdapt type to simplify implementation of subtypes.
* Add TSAdapt{Set|Get}Clip() and remove TSAdaptBasic{Set|Get}Clip().
* Add TSAdapt{Set|Get}Safety() to set safety factors.
* Add TSAdaptGetStepLimits().

show more ...


# 852f401d 24-Apr-2017 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into knepley/feature-plex-torus

* master: (174 commits)
Bib: Another ref
Increase patchlevel to 3.7.6
Explicitly listing the LTO library causes difficulties on MacOS so a

Merge branch 'master' into knepley/feature-plex-torus

* master: (174 commits)
Bib: Another ref
Increase patchlevel to 3.7.6
Explicitly listing the LTO library causes difficulties on MacOS so avoid it
TSBDF: Update changes/dev.html
Added Fortran TaoType and TaoLineSearchType definitions
Add Fortran TaoType and TaoLineSearchType definitions
setblocksize for iscol_sub
TSBDF: Use standard TS API and options to control adaptivity
Bib: More refs and a correction
SNESTest: Bug-fix in SNESTest when threshold printing option is turned on.
fix warning and valgrind complains reported by the nightly tests
Section+Doc: Small doc fix
pflotran: switch to using the new upstream git repo
DMPlex: Error if attempt to partition a distributed graph with Chaco
fix complex build error
fix complex build
PetscError() did not properly copy over the specific error message when error type was PETSC_ERROR_INITIAL
TSAdapt: Refactor handling of the always_accept flag
Additional clarification for MatMeshToCellGraph() manual page
optimize MatCreateSubMatrix_MPIAIJ() by merging check of sameXXXDist() into one MPI_AllReduce
...

Conflicts:
config/BuildSystem/config/packages/med.py

show more ...


# f02d32ba 20-Apr-2017 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/fix-bdf-adapt (pull request #667)

TSBDF: Use standard TS API and options to control adaptivity

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


# 31c15585 19-Apr-2017 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'dalcinl/fix-bdf-adapt' into barry/update-petscfileretrieve


# a9f05ab0 19-Apr-2017 Lisandro Dalcin <dalcinl@gmail.com>

TSBDF: Use standard TS API and options to control adaptivity

* Adaptivity is enabled by default
* Use "-ts_adapt_type none" to turn off adaptivity
* Remove the TSBDFUseAdapt() routine
* Remove the -

TSBDF: Use standard TS API and options to control adaptivity

* Adaptivity is enabled by default
* Use "-ts_adapt_type none" to turn off adaptivity
* Remove the TSBDFUseAdapt() routine
* Remove the -ts_bdf_adapt option

show more ...


# c90b701e 14-Mar-2017 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into knepley/feature-plex-pragmatic-parallel

* master: (1379 commits)
Minor fixes for tchem examples due to changes in PETSc infrastructure
update webpage about API changes

Merge branch 'master' into knepley/feature-plex-pragmatic-parallel

* master: (1379 commits)
Minor fixes for tchem examples due to changes in PETSc infrastructure
update webpage about API changes
add help menu for MatCreateSubMatricesMPI()
rename struct Mat_SubMat -> Mat_SubSppt
add a little information to the manual about using tchem
rename MatCreateSubMatrixComposite -> MatCreateSubMatrixVirtual; Mat_SubMatrix -> Mat_SubVirtual
need to protect the \ passed on the makefile on my Mac
Bib: Updated ref
update src/mat/examples/tests/output/ex23_#.out
rename MatGetSubMat -> MatCreateSubMat
Mark MatCreateMPIAIJWithSplitArrays() and MatMPIAIJSetPreallocationCSR() with MAT_NO_OFF_PROC_ENTRIES
superlu: libray is installed in PREFIX/lib64 - fix this to use PREFIX/lib
backport fixes cc105cc3 2b35c90a - required for 3bf428d - that was backported from master - 80c96bb
'echo -n' fails on opensolaris/osx - so avoid using it.
fix diffs in nightlybuilds due to options in ~/.petscrc
add Kelley03 to src/docs/tex/petsc.bib
build: determine moudles, mpi.h used during buildtime and print in 'info'
fix analyzer warnings
fix build failure on opensolaris - where -lm from flibs is removed due to -lm in cxxlibs. But then - only flib gets used for some configure tests [blaslapack, parms]
config: prefer __restrict over C99 restrict keyword
...

show more ...


# 9137bce6 24-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/remove-funct'


# fbfcfee5 19-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

Remove the use and definition of __FUNCT__ throughout the code

Since all modern C/C++ compilers provide this functionality we no longer need to provide it manually in PETSc
Time: 1.5 hours
Thanks-t

Remove the use and definition of __FUNCT__ throughout the code

Since all modern C/C++ compilers provide this functionality we no longer need to provide it manually in PETSc
Time: 1.5 hours
Thanks-to: Andreas Mang <andreas@ices.utexas.edu>

show more ...


# 10c1f87b 27-Oct-2016 Toby Isaac <tisaac@uchicago.edu>

Merge branch 'master' into tisaac/dmplex-feature-real-to-ref

I need updated PetscFE interfaces in what I'm going to do

* master: (603 commits)
parmetis: fix typo in testsuite
Added PETSC_HAVE_A

Merge branch 'master' into tisaac/dmplex-feature-real-to-ref

I need updated PetscFE interfaces in what I'm going to do

* master: (603 commits)
parmetis: fix typo in testsuite
Added PETSC_HAVE_ATTRIBUTEALIGNED flag to makefile
PCSetUp_SVD() used incorrect matrix for matrix size in parallel, also need to skip LAPACK call if matrix size is zero
strumpack: update to latest version 1.0.4
Remove valgrind warning about MPI_Allreduce() with uninitialized data
sed for test output that has atol convergence with quad precision
updated ex1_nest tests
fixed incorrect key value
fix: bad merge a69d34a
test: move runex78 to TESTEXAMPLES_C_NOTSINGLE
build: fix warnings
sys: update test to produce same result - irrespective of debug/opt build - and presence of ~/.petscrc
sys: src/sys/examples/tests/ex30.c -> src/sys/examples/tests/ex32.c to avoid conflict in master
Sed output, since quad precision reduces below atol on these tests
remove automatically generated matrix names from test output files since can be different
Fixes for MatMPIXXXSetPreallocation(), they were not reentrant, since they kept the information used for matrix-vector products
GAMG: fix PCView_GAMG() format - and update output/ex56_0.out
superlu_dist: 64-bit-indices fix https://github.com/xiaoyeli/superlu_dist/issues/4
Add SNESSetDivergenceTolerance / -snes_divergence_tolerance.
fixed unit read in Plex
...

show more ...


# e923053f 15-Oct-2016 stefano_zampini <stefano.zampini@gmail.com>

Merge branch 'stefano_zampini/feature-convert-matnest-matis' into stefano_zampini/feature-pcbddc-saddlepoint

I have to merge it here, since there's an API addition for MatIS in stefano_zampini/featu

Merge branch 'stefano_zampini/feature-convert-matnest-matis' into stefano_zampini/feature-pcbddc-saddlepoint

I have to merge it here, since there's an API addition for MatIS in stefano_zampini/feature-pcbddc-saddlepoint
that prevents me to smoothly merge stefano_zampini/feature-convert-matnest-matis into next.

This will also facilitate merging stefano_zampini/feature-pcbddc-saddlepoint into master

Conflicts:
src/docs/website/documentation/changes/dev.html

show more ...


# c3c9259e 10-Oct-2016 Satish Balay <balay@mcs.anl.gov>

Merge branch 'emil/ts-glee'


# 7453f775 05-May-2016 Emil Constantinescu <emconsta@mcs.anl.gov>

extended the TS weighted error norm to compute the norms relative to absolute and relative tolerances separatelly


# 6bd6c117 12-May-2016 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into knepley/feature-parallel-mesh-load

* master: (180 commits)
Bib: Added ref
-random_view caused error because PetscRandomView() was not provided in PetscRandomCreate()

Merge branch 'master' into knepley/feature-parallel-mesh-load

* master: (180 commits)
Bib: Added ref
-random_view caused error because PetscRandomView() was not provided in PetscRandomCreate()
Update the xSDKTrilinos test message to use interactive session and ctest
gcc6: fix comple warnings with -Wmisleading-indentation
fix compile warning
bugfix for MatTransposeMatMultSymbolic_MPIAIJ_MPIAIJ_nonscalable()
minor formatting cleanup of gamg.c
add ml example to tutorials page for xsdk
bugfix of MatDuplicate for mpiaij matrix product Reported-by: Miorelli, Federico <Federico.Miorelli@cgg.com>
The deprecated -log_summary_exclude was still being used when it should have been -log_exclude
cpardiso: requires mkl_blacs so check for that. Also common code to detect MKL for both pardiso and cpardiso
cpardiso: fix segv and memory leaks
resume MatGetSubMatrix_SeqSBAIJ() because it cannot share routine with BAIJ due to cast
fix bad relative links
replace MatSeqBAIJSetPreallocation_SeqBAIJ with MatSeqBAIJSetPreallocation to skip this call when input mat is sbaij type
fix a variety of set but not used variables in examples detected by clang static analyzer
removed declared but not used variable
ANL Report formatting requires listing authors by affiliation
DMP4est: uncrustify
DMP4est: remove memset()
...

show more ...


# 35d70571 04-May-2016 Stefano Zampini <stefano.zampini@gmail.com>

Merge branch 'master' into stefano_zampini/feature-pcbddc-saddlepoint

Conflicts:
src/ksp/pc/impls/bddc/bddc.c
src/ksp/pc/impls/bddc/bddcgraph.c
src/ksp/pc/impls/bddc/bddcprivate.c


# c427f8c9 24-Apr-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'maint'


# 897a32b2 24-Apr-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'dalcinl/tsbdf' into maint


# 211a84d6 24-Apr-2016 Lisandro Dalcin <dalcinl@gmail.com>

TS: Add BDF implementation


12345