History log of /petsc/src/vec/pf/interface/pf.c (Results 201 – 225 of 321)
Revision Date Author Comments
# 8a1af44d 03-Apr-2013 Jed Brown <jed@59A2.org>

Merge branch 'barry/rm-xxxregisterdynamic'

* barry/rm-xxxregisterdynamic:
Registration: remove stale 'XXRegisterDynamic)' entries in man pages
TS examples: fix use of PetscFunctionList and add t

Merge branch 'barry/rm-xxxregisterdynamic'

* barry/rm-xxxregisterdynamic:
Registration: remove stale 'XXRegisterDynamic)' entries in man pages
TS examples: fix use of PetscFunctionList and add to nightlies
Changes: Note updates to XRegisterDynamic/PetscObjectComposeFunctionDynamic
PetscObjectComposeFunctionDynamic: remove stale docs and usage
developers.tex: remove complications from function composition with dlls
removed string version of function name for XXXRegister(), PetscFunctionListAdd() and PetscObjectComposeFunction()
changes: document PetscFunctionListAdd() API change
developers.tex: update documentation of PetscObjectComposeFunction
removed path and MPI_Comm arguments from PetscFunctionListFind/Add()
removed path argument to XXXInitializePackage() and XXXRegister()
removed XXXRegisterDynamic() but kept the APIs for everything else underneath the same phase I of the update to handling registering function pointers

show more ...


# a240a19f 01-Apr-2013 Jed Brown <jed@59A2.org>

PetscFunctionListAdd: use macro to hide (PetscVoidFunction) cast

Same rationale as the last commit:

Casting using PetscVoidFunction instead of (void(*)(void)) is needed
with C++ compilers that will

PetscFunctionListAdd: use macro to hide (PetscVoidFunction) cast

Same rationale as the last commit:

Casting using PetscVoidFunction instead of (void(*)(void)) is needed
with C++ compilers that will not implicitly convert C++ language linkage
to C language linkage. Since PetscFunctionListAdd() is meant to operate
on generic function pointers, we hide this language linkage detail
(which is inconsistently implemented) in a cast.

show more ...


# 1c9cd337 01-Apr-2013 Jed Brown <jed@59A2.org>

PetscFunctionListFind: use macro to hide (PetscVoidFunction*) cast

Casting using PetscVoidFunction* instead of (void(**)(void)) is needed
with C++ compilers that will not implicitly convert C++ lang

PetscFunctionListFind: use macro to hide (PetscVoidFunction*) cast

Casting using PetscVoidFunction* instead of (void(**)(void)) is needed
with C++ compilers that will not implicitly convert C++ language linkage
to C language linkage. Since PetscFunctionListFind() is meant to operate
on generic function pointers, we hide this language linkage detail
(which is inconsistently implemented) in a cast.

show more ...


# 4d2d963c 28-Mar-2013 Richard Mills <rtm@eecs.utk.edu>

Merged petsc/petsc into rmills/petsc master


# e1d27e54 28-Mar-2013 Jed Brown <jed@59A2.org>

Merge branch 'barry/rm-xxxregisterdynamic' into jed/ts-eimex

PetscObjectComposeFunctionDynamic() and TSRegisterDynamic() were
replaced by PetscObjectComposeFunction() and TSRegister(), both of which

Merge branch 'barry/rm-xxxregisterdynamic' into jed/ts-eimex

PetscObjectComposeFunctionDynamic() and TSRegisterDynamic() were
replaced by PetscObjectComposeFunction() and TSRegister(), both of which
drop the string name argument.

* barry/rm-xxxregisterdynamic: (82 commits)
...

Conflicts:
src/ts/interface/tsregall.c

show more ...


# bdf89e91 26-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

removed string version of function name for XXXRegister(), PetscFunctionListAdd() and PetscObjectComposeFunction()


# d4349b43 26-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

removed path and MPI_Comm arguments from PetscFunctionListFind/Add()


# 607a6623 26-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

removed path argument to XXXInitializePackage() and XXXRegister()


# 1c84c290 25-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

removed XXXRegisterDynamic() but kept the APIs for everything else underneath the same
phase I of the update to handling registering function pointers


# 99c3dd19 20-Mar-2013 Jed Brown <jed@59A2.org>

Merge branch 'barry/ams' into master

* commit 'eb4227cfdd169cc03749ba3ef12d3932f2f322bf': (24 commits)
forgotten files
basic snooping on PetscStack is now working
split AMSJavascript.py into A

Merge branch 'barry/ams' into master

* commit 'eb4227cfdd169cc03749ba3ef12d3932f2f322bf': (24 commits)
forgotten files
basic snooping on PetscStack is now working
split AMSJavascript.py into AMS.py for AMS javascript and AMSSnoopObjects.py for example showing published objects
fix bug in previous commit
added error returns for JSON-RPC AMS calls
don't let web accessor change length of array setting to publisher
Pass arrays of values back from webserver to AMS publisher
fix for last commit, missing errorcode and wrong variable name
KSPLogResidualHistory and SNESLogConvergenceHistory need to lock for AMS and have error checking when called
shutdown webserver if you started it on PetscFinalize(), what about when crash, should still shut it down
Added support for starting server automatically by application code messed around finding a bug in AMS
got value back from webclient to application
goddman script Jed sent me doesn;t work, it loses changes
split webserver into standalone problem that is not part of running PETSc application had to do this since impossible for AMS publisher and accessor to be in same application better to just totally redo AMS! But that is to large a project
moved webserver code to its own directory and file
added callback for changable fields in pyjs representation of AMS memories
add AMS viewer for PC, server can only run without any memory debugging
changed AMS publishing to use the Viewer model added simple AMS viewer for mat,ksp,snes,ts added --ksp/snes/ts_view_pre for starting the viewer before the solve (ugly but useful for AMS) added PetscStackCalls around AMS function calls when appropriate (note do not want these in webserver because do not webserver stopping just because AMS server is down
more work on moving AMS model to viewer
Fix for SNESSetConvergenceHistory() when input a is null
...

show more ...


# 4042b796 17-Mar-2013 Jed Brown <jed@59A2.org>

Merge branch 'master' into jed/ts-eimex

Sync to include Git conversion, PETSC_EXTERN, and minor API changes.

Conflicts:
src/ts/interface/tsregall.c


# f05ece33 13-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

changed AMS publishing to use the Viewer model
added simple AMS viewer for mat,ksp,snes,ts
added --ksp/snes/ts_view_pre for starting the viewer before the solve (ugly but useful for AMS)
added PetscS

changed AMS publishing to use the Viewer model
added simple AMS viewer for mat,ksp,snes,ts
added --ksp/snes/ts_view_pre for starting the viewer before the solve (ugly but useful for AMS)
added PetscStackCalls around AMS function calls when appropriate (note do not want these in webserver because do not webserver stopping just because AMS server is down

show more ...


# ec7429ea 12-Mar-2013 Barry Smith <bsmith@mcs.anl.gov>

work on AMS interface, consistent naming, ams.h not included in petscviewer.h, no ifdefs

Hg-commit: 642571a1dc7109fdb7e5b0abb23bf260d10eb970


# ce94432e 13-Feb-2013 Barry Smith <bsmith@mcs.anl.gov>

added PetscObjectComm() and used it to replace (((PetscObject)obj)->comm)

Hg-commit: 3da37c458124ad48ae939f4e9823e4430ee0b8be


# 67c2884e 13-Feb-2013 Barry Smith <bsmith@mcs.anl.gov>

removed typeid from PetscHeaderCreate() args since it is not know at create time anyway

Hg-commit: 368e928141e31cf1ff6cf108913006e5886dc6cc


# 0298fd71 08-Feb-2013 Barry Smith <bsmith@mcs.anl.gov>

removed PETSC_NULL from C and Fortran (except declaration in C for backward compatibility). Kept PETSC_NULL_xxx for Fortran
Fixed a few bugs where PETSC_NULL had been used incorrectly.

Hg-commit: 05

removed PETSC_NULL from C and Fortran (except declaration in C for backward compatibility). Kept PETSC_NULL_xxx for Fortran
Fixed a few bugs where PETSC_NULL had been used incorrectly.

Hg-commit: 054705a517d7f4388a8a084415d7478cbe95dff4

show more ...


# f6e5521d 28-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Uncrustified src/vec/

Hg-commit: 11b3f3188710a3512843b505cbe0d18ac9fd9393


# 009bbdc4 26-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Reformatted: "Do not put a blank line immediately before PetscFunctionReturn;"

Hg-commit: c8a41c455986e732d0ea0513d7162a54daffaece


# f23aa3dd 25-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

generally SETERRQXX does not belong on its own line
also fixed formatting issues in dgmres.c (ugh)

Hg-commit: e3fffdf67cd55655a36785a0abc7c197e98ca7cd


# c5a46771 22-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

commit aftr merge

Hg-commit: 854807b200896ff0e3d6fb344a549ed1a2b93850


# 519f805a 20-Jan-2013 Karl Rupp <rupp@mcs.anl.gov>

Replaced '#ifdef' and '#ifndef' with '#if defined()' and '#if !defined()'.

Hg-commit: b3ebae8b626a88c2ac067fd7c3f04f229b43f305


# 140e18c1 15-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

removed silly abreviations

Hg-commit: 0641f9ef776cf11cc3336b494981da756bf9d14f


# 6d75e210 15-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

change PetscFListAdd() and PetscFListFind() arguments list to match PetscOpFListAdd/Find() args

Hg-commit: 07f9e01e040feeb4162253a60ca63556436f4135


# a853e81e 13-Jan-2013 Shri Abhyankar <abhyshr@mcs.anl.gov>

Commit after merge.

Hg-commit: 7ae059cc471c053401c1d6a21c3e45b9d4418175


# f2ba6396 12-Jan-2013 Barry Smith <bsmith@mcs.anl.gov>

added appropriate #include to various synopsis in manual pages

Hg-commit: 649729772e487ab080652f3c9abb4b4203cfa79d


12345678910>>...13