kanav99 on gh-pages
build based on 1428da8 (compare)
KirillZubov on master
replace gpu tests update fix some thing and 3 more (compare)
christopher-dG on 173ec862-done
christopher-dG on 173ec862-done
https://gitlab.com/JuliaGPU/Dif… (compare)
christopher-dG on 33306ba4-done
christopher-dG on 33306ba4-done
https://gitlab.com/JuliaGPU/Dif… (compare)
NewOptimizatonType
names in them. I can guess that Expected Improvement is going to be EI(), but it could be nice to add them.[slack] <briochemc> What's the correct way to check if a function is inplace? I.e., in
```julia> foo(du, u, p, t) = "in place"
foo (generic function with 1 method)
julia> ODEFunction(foo)
(::ODEFunction{true,typeof(foo),LinearAlgebra.UniformScaling{Bool},Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing,Nothing}) (generic function with 7 methods)``
how does ODEFunction assign
iip = true`? Not sure where to look for the code that does that 😅
nargs
, but I want to be sure how it's supposed to be done 🙂
nargs
search on DiffEqBase gave me no results 🤔)
A\b
works, but I am benchmarking different methods.
A\b
does something perhaps overly smart and switches the solver depending on the dimensions i believe
A
matrix comprises derivative operators, so I'm also looking at DiffEqOperators.
SecondOrderODEProblem
still supported? I had a hard time understand what inputs the dynamics function should take. Unfortunately reading https://github.com/SciML/DiffEqBase.jl/blob/864c379ead274243acdd965bd8942d1da1deb3bb/test/problem_creation_tests.jl#L51 didn't shed a lot of light for me. I'm not sure what the relationship between u
and v
are, and the docstring args from the SecondOrderODEProblem
constructor seems flipped compared to its implementation. Thanks for any information!
[slack] <jonas.isensee> Thanks you, that seems to work.
Not sure that is much better for my particular usecase though.
I want to work with the matrix directly andu.x[2]
is probably not much better than`@view u[:,2:4]`
at the cost of introducing another abstraction layer.
(relevant since this is for teaching...)