cossio
cossio
Any updates on this? I'm trying to write a BitArray and for me it just crashes Julia, without even throwing any errors.
I can't reproduce. Now I get the error reported above.. I think there might have been an OOM.
> or do you want a compact representation on disk as well? this. I'm saving a huge array and would like to compress as much as possible, both on disk...
Thanks! Though I still get the error ``` $ curl -fsSL https://install.julialang.org | sh /tmp/tmp.yutIGUX4TE/juliainstaller: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /tmp/tmp.yutIGUX4TE/juliainstaller) ```` It's just a matter of waiting...
Running into this too. Any hints as to where in the source code should one look to attempt to fix this?
You mean Revise should take care of updating this dict when it loads new pkg versions? Or the logic should go somewhere else?
+1. Any updates?
An alternative idea is to let RegistryCI recognize a comment containing `[versionskip]` (or something similar) in the registration PR to let it bypass the version skip check and auto merge...
> The command definitions will be available in the current file (and in fact, leaking to the whole obsidian app once this block is rendered, which could be a security...
Here is an example where `StructArrays` seems to facilitate SIMD optimization. (Relevant discussion about this example: https://discourse.julialang.org/t/struct-of-arrays-soa-vs-array-of-structs-aos/30015) ```julia struct ComplexAoS real::Float64 imag::Float64 end struct ComplexSoA real::Vector{Float64} imag::Vector{Float64} end N =...