-
-
Notifications
You must be signed in to change notification settings - Fork 255
SciMLLogging Integration #2895
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
SciMLLogging Integration #2895
Changes from all commits
541fee5
b025a1d
1db889b
e3ff96c
11dc7c8
833e0c3
c786427
88304bb
c77b04f
78d200f
46915a7
b659f3c
8019fd3
cd4ef52
7b7d44f
ca4321d
925c897
f48015f
297711a
a06c3f4
754c9e2
af27530
87c6bf6
ae41ff9
9bafaac
51eec0a
b14b7f0
cbc826f
fd17a3d
99d2895
7b86b50
282b258
8848e54
68ba61c
72b54e4
daf251e
3e8974b
0331eaf
ffa76ac
4c693e9
5da1213
91507f1
1069414
6c2922a
1cf96f9
5d28fa1
bff9195
5e06ae0
cb59313
b5b4316
01b1776
74e1ccb
a9d1b67
5883ad0
77fedf5
e61aad8
8afdaf4
de47e46
3b57733
cf65901
f274bf5
d7a6cfc
773e4aa
2239c89
a09cd31
0b5eeb5
8973156
41c04bf
5353427
19b9609
2dd5574
aac679a
24113fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Controlling Solver Verbosity | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. DiffEqDocs needs a PR that explains it in more detail how it's a solver-package specific thing.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually it makes it a bit rough for it to be solver-specific... since then you cannot do things in benchmarks and optimization more generally. |
||
|
|
||
| OrdinaryDiffEq.jl provides fine-grained control over diagnostic messages, warnings, and errors | ||
| through the `verbose` keyword argument for `solve`. The verbosity system allows you to control what | ||
| information is displayed during the solve process. See [SciMLLogging.jl](https://docs.sciml.ai/SciMLLogging/dev/) for more details. | ||
|
|
||
| ```@docs | ||
| ODEVerbosity | ||
| ``` | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ import OrdinaryDiffEqCore: OrdinaryDiffEqMutableCache, OrdinaryDiffEqConstantCac | |
| trivial_limiter!, get_fsalfirstlast, | ||
| generic_solver_docstring, | ||
| full_cache, | ||
| _bool_to_ADType | ||
| _bool_to_ADType, @SciMLMessage | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't seem right? It's defined in SciMLLogging.jl??????
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it better to have SciMLLogging as a direct dep? |
||
| import OrdinaryDiffEqLowOrderRK: BS3ConstantCache, BS3Cache, RK4ConstantCache, RK4Cache | ||
| import RecursiveArrayTools: recursivefill! | ||
| using MuladdMacro, FastBroadcast | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JET tests should be in the no-pre setting