Elliot Saba
                                            Elliot Saba
                                        
                                    Agreed; I've done some launchd debugging myself recently, due to [using launchd to restart macos buildkite agents](https://github.com/JuliaCI/sandboxed-buildkite-agent/blob/main/macos-seatbelt/common.jl#L217-L281), and I found [LaunchControl](https://www.soma-zone.com/LaunchControl/) to be an indispensable resource for debugging why my...
I will add this to my TODO: I have a cleanup planned to make it easier to integrate the blocked convolution code in https://github.com/FluxML/NNlib.jl/pull/97. It will be possible to disable...
My work so far is here: https://github.com/FluxML/NNlib.jl/pull/163 but it needs to be rebased.
Looking into this a bit, without any changes to Julia, you can fix the issue by using a different SSH key: you can just generate a new ECDSA key (e.g....
It's [inside of libssh2](https://www.libssh2.org/changes.html) ever since version 1.10.0; it's not in Julia code, it's just the native libgit2->libssh2->mbedtls stack.
It looks like there's some macOS garbage that got into there, with special `tar` extension fields that we don't want. Stripping them out with: ```julia Tar.rewrite("julia-1.0.5-mac64.tar", "julia-1.0.5-mac64.tar.rewritten") do hdr return...
Alright done. Remember to do a `curl -L -X PURGE https://julialang-s3.julialang.org/bin/mac/x64/1.0/julia-1.0.5-mac64.tar.gz` from your location to ensure that any Fastly caches between you and the S3 bucket are properly purged before...
Yeah, FastConv doesn't support multiple channels; what you're doing is instead doing a 3d convolution, so it ends up increasing the 3rd dimension to `3 + 3 - 1`. Difficult...
You may be interested in https://github.com/FluxML/NNlib.jl/pull/142
The issue is that `.pkg/select_artifacts.jl` is able to be run at a very inconvenient time; it runs _during_ `Pkg.instantiate()` (and also at other times, but this time is the important...