Graham Smith
Graham Smith
```julia A = AxisArray(rand(5,3), 1:5, 2:4); A[(A .< 0.5)]; # works! awesome! A[(A .< 0.5).data]; # does not work :( ``` This example is pretty contrived-- the real problem in...
[caveat: I'm on a dev'd AxisIndices v0.6.3, where I made a change to fix the logical indexing bug] When you print `A = NamedAxisArray{(:a, :b, :c, :d)}(rand(5,4,3,2), 1:5, 1:4, 1:3,...
It seems like the parent object is not collected, but held in its generated form. I think it's fair to say that when you provide an object to an array...
**Describe the bug** Upon opening Anki, a window pops up saying "The following add-ons failed to load: - Migaku Kanji GOD" Despite the pop-up, the add-on seems to work **To...
Piracy test fails. I'm going to try moving relevant methods to LayoutPointers.jl. ``` Julia Version 1.11.0-beta1 Commit 08e1fc0abb9 (2024-04-10 08:40 UTC) Build Info: Official https://julialang.org/ release Platform Info: OS: Linux...
For a simple example: ``` @distributed for (i, j) in Base.Iterators.product([1, 2], [3, 4]) @show i + j; i + j end ``` This should error, as in JuliaLang/Distributed.jl#57, but...