@@ -25,7 +25,7 @@ function select_forward_mode_autodiff(
25
25
! is_finite_differences_backend (ad)
26
26
27
27
@SciMLMessage (" The chosen AD backend $(ad) is not a forward mode AD. Use with caution." ,
28
- nonlinear_verbosity [], :fd_ad_caution , :error_control )
28
+ nonlinear_verbose [], :fd_ad_caution , :error_control )
29
29
30
30
end
31
31
if incompatible_backend_and_problem (prob, ad)
@@ -34,7 +34,7 @@ function select_forward_mode_autodiff(
34
34
@SciMLMessage (" The chosen AD backend `$(ad) ` does not support the chosen problem. This \
35
35
could be because the backend package for the chosen AD isn't loaded. After \
36
36
running autodiff selection detected `$(adₙ) ` as a potential forward mode \
37
- backend." , nonlinear_verbosity [], :ad_backend_incompatible , :error_control )
37
+ backend." , nonlinear_verbose [], :ad_backend_incompatible , :error_control )
38
38
39
39
return adₙ
40
40
end
@@ -56,14 +56,14 @@ function select_reverse_mode_autodiff(
56
56
! (ADTypes. mode (ad) isa ADTypes. ForwardOrReverseMode) &&
57
57
! is_finite_differences_backend (ad)
58
58
@SciMLMessage (" The chosen AD backend $(ad) is not a forward mode AD. Use with caution." ,
59
- nonlinear_verbosity [], :fd_ad_caution , :error_control )
59
+ nonlinear_verbose [], :fd_ad_caution , :error_control )
60
60
end
61
61
if incompatible_backend_and_problem (prob, ad)
62
62
adₙ = select_reverse_mode_autodiff (prob, nothing ; warn_check_mode)
63
63
@SciMLMessage (" The chosen AD backend `$(ad) ` does not support the chosen problem. This \
64
64
could be because the backend package for the chosen AD isn't loaded. After \
65
65
running autodiff selection detected `$(adₙ) ` as a potential forward mode \
66
- backend." , nonlinear_verbosity [], :ad_backend_incompatible , :error_control )
66
+ backend." , nonlinear_verbose [], :ad_backend_incompatible , :error_control )
67
67
return adₙ
68
68
end
69
69
return ad
@@ -84,7 +84,7 @@ function select_jacobian_autodiff(prob::AbstractNonlinearProblem, ad::AbstractAD
84
84
@SciMLMessage (" The chosen AD backend `$(ad) ` does not support the chosen problem. This \
85
85
could be because the backend package for the chosen AD isn't loaded. After \
86
86
running autodiff selection detected `$(adₙ) ` as a potential forward mode \
87
- backend." , nonlinear_verbosity [], :ad_backend_incompatible , :error_control )
87
+ backend." , nonlinear_verbose [], :ad_backend_incompatible , :error_control )
88
88
return adₙ
89
89
end
90
90
return ad
0 commit comments