Stephan Kleinbölting

Results 7 issues of 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....

bug
UnitfulExt

I was wanting to try out WGLMakie, but it wouldn't show any output. Apparently the session doesn't connect. ![image](https://user-images.githubusercontent.com/19183183/123517972-2776a680-d6a4-11eb-9e29-89d8c680f15d.png) Furthermore, `isnothing(page.session.connection[])` yields `true`. Browser console logs ![image](https://user-images.githubusercontent.com/19183183/123588408-04550f80-d7e8-11eb-9956-703107f28e37.png) ![image](https://user-images.githubusercontent.com/19183183/123588525-2ea6cd00-d7e8-11eb-92c9-69cb46899bda.png) Versions: *...