Peter C. Jentsch

Results 8 issues of Peter C. Jentsch

MWE ``` using DelayDiffEq using LabelledArrays function bc_model(du,u,h,p,t) du.x .= -1 .* u.x du.y .= -1 .* u.y end lags = [tau] h(p, t) = @LArray fill(0.0,6) (x = 1:3,...

The example given in the docstring does not seem to work. ``` help?> @LVector @LVector Type Names Creates an LArray of dimension 1 with eltype and undefined values. Length is...

Full MWE ``` using OrdinaryDiffEq using DifferentialEquations.EnsembleAnalysis using DiffEqGPU using CuArrays Base.@propagate_inbounds function lotka_volterra2(du,u,p,t) x,y = u du[1] = p[1]*x - p[2]*x*y du[2] = -p[3]*y + p[4]*x*y return nothing end...

Hello! I am trying to `@avx` the following code: ``` function fastmod!(n::Array{UInt32,N},T::Mod) where N @avx n .= (convert.(UInt128,(T.modulo_inv .* n)) .* T.modulo) .>> 64 end ``` the error I get...

Tables with String columns created from CSV.jl occasionally have a column-type of `InlineString` when opened. It's not difficult to convert these to `String` and then write the table with Parquet.jl,...

I did look through previous issues and the manpage for this, sorry if I missed it. If your package name is a very common substring of other package names, then...

This archive opens fine with python's `zipfiles`. It is a 39GB so I cannot include a working example easily but if you are inclined to try it: ``` conda create...

I have noticed that VectorizedRNG supports only uniform and normal samples. Are there plans to add other distributions? Particularly, poisson random variates would be very useful. If I am able...