Hendrik Ranocha
Hendrik Ranocha
Reported by @chriselrod in https://github.com/JuliaArrays/ArrayInterface.jl/pull/161#discussion_r643907939: ```julia julia> using ArrayInterface julia> A = rand(5,12); julia> B = reshape(A', (3,4,5)); julia> ArrayInterface.strides(B) # @chriselrod: should be `(5,15,StaticInt{1}())` (static(1), 3, 12) ```
Reported by @chriselrod in https://github.com/JuliaArrays/ArrayInterface.jl/pull/156#issuecomment-851293134: > ```julia > julia> using ArrayInterface > > julia> u_base = randn(10, 10); u_view = view(u_base, 2:3, :); u_reshaped_view = reshape(u_view, 1, length(u_view)); > >...
Reported in https://github.com/JuliaArrays/ArrayInterface.jl/pull/156#issuecomment-851002133: ```julia julia> using ArrayInterface julia> u_base = randn(10, 10); u_view = view(u_base, 3, :); u_reshaped_view = reshape(u_view, 1, size(u_base, 2)); julia> ArrayInterface.dense_dims(u_reshaped_view) ``` As confirmed by @chriselrod...
```julia julia> using ArrayInterface julia> u_base = randn(10, 10); u_view = view(u_base, 3, :); u_reshaped_view1 = reshape(u_view, 1, :); u_reshaped_view2 = reshape(u_view, 2, :); julia> ArrayInterface.strides(u_reshaped_view1) (static(1), 1) julia> ArrayInterface.strides(u_reshaped_view2)...
The two-argument form `include(mapexpr::Function, path::AbstractString)` allows transforming the code in the file at `path`. However, Revise does not seem to apply the same transformation `mapexpr` when re-loading code that is...
We're using GitHub actions to test our Julia project using parallel runs. We use [a setup](https://github.com/trixi-framework/Trixi.jl/blob/c635c6afb1db8b6f6cefc72d1065a111bc730081/.github/workflows/ci.yml#L125-L140) following the [parallel jobs example](https://github.com/marketplace/actions/coveralls-github-action#complete-parallel-job-example). Thus, we get many coverage reports of every individual...
Positivity-preserving methods for ordinary differential equations Sergio Blanes, Arieh Iserles and Shev Macnamara ESAIM: M2AN DOI: https://doi.org/10.1051/m2an/2022042
See - Alshina, Zaks, and Kalitkin (2008), Optimal first- to sixth-order accurate Runge-Kutta schemes, https://doi.org/10.1134/S0965542508030068 - Alshina, Zaks, and Kalitkin (2008), A misprint in the coefficients of Hammud’s scheme, https://en.num-meth.ru/index.php/journal/article/view/244...
This project will continue the work discussed in https://github.com/SciML/OrdinaryDiffEq.jl/issues/1423 and started in https://github.com/SciML/OrdinaryDiffEq.jl/pull/1508. The basic idea is to add fields - `stage_limiter!` - `step_limiter!` - `thread` to more/all (explicit RK)...
They have a new sixth-order method with fifth-order embedded method using six stages, see https://doi.org/10.1016/j.cam.2021.113753