Yuval

Results 58 issues of Yuval

same as #179? 1. I was not seeing any highlights, so I disabled and re-enabled the extension. Highlights returned, but scrollbar highlighting still wasn't working, so I also unchecked and...

In this example, `y` is defined although the cell defining it errors after assigning to `y`. The very similar cell defining `z` also errors after assigning to `z`, but in...

In recent versions of Pluto, I often see notebooks get stuck, with the terminal showing something like the following: ``` SystemError: opening file "C:\\Users\\sternlab\\Dropbox\\julia-workspace\\ElegansTimeSeries\\notebooks\\midpoints.pluto.jl": Invalid argument Stacktrace: [1] systemerror(p::String, errno::Int32;...

bug
backend

Example notebook: ``` OrderedDict(1:5 .=> rand.(3)) ``` ``` begin using DataStructures k = sort!(collect(keys(d))) end ``` 1. Assigning the `OrderedDict` of the first cell to `d` it complains that `OrderedDict`...

reactivity

``` using BlocksArrays, NamedArrays m1 = mortar(NamedArray([rand(i,j) for i=1:2, j=1:3], (x=["a","b"], y=["c","d","e"]))) m2 = mortar(NamedArray([rand(i,j) for i=1:2, j=1:3], (x=["a","b"], y=["c","d","e"]))) m1 .* m2 # 2×3-blocked 3×6 BlockMatrix{Float64} ``` The result...

Reproducing example: ``` eachblockrow(x) = (view(x,b,:) for b in blockaxes(x,1)) f(x) = x # just for illustrating use case m = mortar([mortar([rand(1,j) for k=1:i, _=1:1]) for i=2:4, j=3:5]) Matrix(m) #...

With `Plots` checked out for development: ``` julia> using Revise julia> using Plots [ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80] julia> # edit Plots/src/utils.jl julia> plot(rand(4)) ┌ Warning: likely failure to return...

bug

Recently I'm seeing "Revise is no watching" errors again. I don't have a reproducing example, unfortunately, so I'm not sure how to proceed looking into it. It sometimes pops up...

needs reproducer

``` julia> using Flux, BSON julia> d = gpu(Dense(10,10)) Dense(10, 10) # 110 parameters julia> BSON.@save "tmp.bson" d ``` in a different session on the same machine and environment: ```...

This is mostly changing `DenseMatrix` in method signatures to `AbstractMatrix`, and running the tests also on a sparse array and a custom-typed array. Other changes: - Specialized `_symmetrize!` for sparse...