-
-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verbosity System Description #962
Comments
Related to SciML/BoundaryValueDiffEq.jl#290 (comment) |
Some things to read, especially from R's global warning system, which I think has done the best for user-level toggling of messaging:
The idea is that we want to get something with similar-ish functionality, but without relying on globals, which is not thread safe and has performance issues, instead allowing this to be at a function level and uniform across SciML. So let's keep that goal in mind. The basic kwargs on everything should be:
Edge = only prints the info on edge cases, like high condition numbers and changes to QR pivoting. Then each of these should be handling individual settings like
The normal usage should match what we have right now, i.e. that "most" things try not to print but warnings of error control do print to let the user know why the solver exited early. Then we expect users to do things like: verbose = ODEVerbosity(verbose = Verbosity.None) # I want no printing ever, quickest way to write that
verbose = ODEVerbosity(verbose = Verbosity.All) # I want all printing and I'm just going to copy paste it into an issue and Chris why the solver is failing
verbose = ODEVerbosity(error_control = Verbosity.Error) # I want error messages instead of warnings if the solver fails
verbose = ODEVerbosity(performance= Verbosity.Warn) # I want warnings for solver exiting but also if something is slow
verbose = ODEVerbosity(performance= Verbosity.Edge) # I'm scared that my equation is hard and want more information Those are probably the most common scenarios right there. In addition we want to start controlling logging locations. Right now we assume everything goes to the REPL. But if we start to print out giant lists of condition numbers, usually I don't Revise that to my REPL but slap that into a file. So it would be nice to give users easy way to do this. In fact, think of some of these options as "wouldn't it be great if the user gave me everything in a bug report so I didn't have to run their code myself?" The point of this is to make that as dead simple as possible, so users know how to fix things better but also give us better bug reports. Again, something someone like @oscardssmith or I would do is add printing statements into OrdinaryDiffEq to do things like, print if the solver switched from stiff to non-stiff, and print the time stamp of when that happened, so if So for logging control we probably want some stuff like There's probably many other ideas to go on this. @ranocha @devmotion @oscardssmith @AayushSabharwal @BenChung @Vaibhavdixit02 @avik-pal @baggepinnen @bradcarman @asinghvi17 @SebastianM-C probably have feedback, along with maybe @LilithHafner who has done some with Julia Base and likely has some suggests of things we should use to accomplish this. |
Could we make the hierarchy more explicit? So we have a error_control = ErrorControlVerbosity(Verbosity.None)
error_control.dtmin = Verbosity.Warn |
One aspect that I want to mention on this is that the Logging stdlib & LoggingExtras have several of the features that we want, such as
One issue though is that if you have a log that is disabled, such as the default |
I agree with the last part - this should not come at the price of making something like solving many small ODEs on a GPU in parallel terribly slow. |
Yes, it should all compile out when the logging isn't used. That's pretty essential and would break static compilation if that isn't setup. So that's definitely in the requirements. |
The current way to specify verbosity for solvers is through the
Bool
keyword argumentverbose
, which just causes the solver to print out more information if it'strue
. We can have a lot more flexibility by adding anAbstractVerbosity
abstract type and concrete subtypes for every SciMLProblem type.For example we'll have a
BVPVerbosity <: AbstractVerbosity
that will have toggle-able Bool fields for everything that we would want to print during a BVP solve.We can have constructors so that
BVPVerbosity(true)
has every fieldtrue
,BVPVerbosity(false)
has every field false, andBVPVerbosity(nothing)
is the default which has some things true and other things false.This will allow the user to have much greater control over what is printed during the solution of any problem.
The text was updated successfully, but these errors were encountered: