Stephan Kleinbölting
Stephan Kleinbölting
```julia using StochasticDiffEq, DiffEqFlux, Zygote using Statistics f!(du, u, p, t) = (du .= -p[1]*u) g!(du, u, p, t) = (du .= 0.1) u0 = [1.0] prob = SDEProblem(f!, g!,...
Regarding https://github.com/JuliaLang/julia/issues/42687 Switch to Pkg mode from shell mode.
Closes https://github.com/JuliaCI/BenchmarkTools.jl/issues/221 Fixes a bug where every iteration of the for loop would overwrite the previous benchmark case. Test.
This minimal example demonstrates the issue: ```julia using OpenCL mutable struct MyBufferedType A::Array{Float32,1} A_buf::OpenCL.cl.Buffer end function MyBufferedType(cl_ctx::OpenCL.cl.Context) A = zeros(Float32,8) A_buf = OpenCL.cl.Buffer(Float32, cl_ctx, (:rw,:use), hostbuf=A) MyBufferedType(A,A_buf) end function main()...
Loading `tutorials/tranformations1.jl` results in ``` julia> include("transformations1.jl") ERROR: LoadError: Please supply only paths or tuples of (source, typ) for Lazy Shader Found: (("#version 150\n\nin vec2 position;\nin vec3 color;\nin vec2 texcoord;\n\nout...
# MWE ```julia using Plots, Unitful julia> y(t) = 1/2*t^2; julia> plot(y, xlims=(0u"s", 5u"s")) julia> xlabel!("Time") Error showing value of type Plots.Plot{Plots.GRBackend}: ERROR: DimensionError: and s are not dimensionally compatible....
I was wanting to try out WGLMakie, but it wouldn't show any output. Apparently the session doesn't connect.  Furthermore, `isnothing(page.session.connection[])` yields `true`. Browser console logs   Versions: *...