Milan Klöwer
Milan Klöwer
The `NetCDF.ncread` syntax with `start` and `count` does not seem to cause the same issues...
Ah I see, so if I actually open many files in a short time (as I only pull little data from each), I can still end up in a `too...
Thanks for pushing for this in hdf5-feedstock! Fingers crossed this is available at some point soon
I don't use FreeBSD directly, but I thought you may want that NetCDF.jl runs on it.
@giordano do you know whether this is a common error with FreeBSD & BinDeps?
I haven't looked into it further. I assume that if you use `FourierTransforms.jl`, line 20 and 22 could simply be commented, but @stevengj should know better.
Technically this should work ```julia julia> using SoftPosit, FastTransforms julia> x = Posit16.(rand(8)) 8-element Vector{Posit16}: Posit16(0.6254883) Posit16(0.7780762) Posit16(0.8145752) Posit16(0.50598145) Posit16(0.74768066) Posit16(0.29797363) Posit16(0.89624023) Posit16(0.6437988) julia> fft(x) ERROR: MethodError: no method matching...
Sorry, only now saw https://mauro3.github.io/Parameters.jl/stable/manual/#The-type-specific-(un)pack-all-macros-(somewhat-dangerous)
I still get this similar error with 1.6-rc3 on aarch64 ```julia julia> Pkg.build("Plots") Building GR → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/12d971c928b7ecf19b748a2c7df6a365690dbf2c/build.log` ERROR: Error building `GR`: tar (child): downloads/gr-0.55.0-Linux-aarch64.tar.gz: Cannot open: No such file or...
Is there somewhere a quick example of how to use zstd vs zlib? At the moment I'm just doing ``` compression_level = 3 NcVar(...,compress=compression_level) ```