Elliot Saba
Elliot Saba
We need to inspect all `LibraryProduct`s within a build, look at their dependencies, then do a breadth-first walk of those LibraryProducts when `dlopen()`'ing them in the `__init__()` method of JLL...
Attempting to `dsync` a directory from one S3 bucket to another results in the following errors: ``` $ s4cmd dsync --verbose s3://julialang/bin s3://julialang2/bin [Exception] 'NoneType' object has no attribute '__getitem__'...
I'm not entirely sure what is happening here. I'm trying to filter an image before resizing it, as recommended by the `Images.jl` docs. Running: ``` reduction_factor = new_len/minimum(size(im)[1:2]) im =...
Hello there! This is an automated pull request submitted by `@staticfloat` to help package authors transition their Julia installation CI setups to the new binary provider URL. Please take a...
If I have a multi-line option description, `DocOpt.jl` does not correctly group all lines together, it merely grabs the first line, discarding the rest due to [this `filter!()` call removing...
We set OpenBLAS's initial thread count to `1` to prevent runaway allocation within OpenBLAS's initial thread startup. LinearAlgebra will later call `BLAS.set_num_threads()` to the actual value we require.
Previously, we might observe this code segfault if the memory at `binding->ty` eventually was reused due to this missing GC root. ``` julia> x::Union{Int,Nothing} = 2 2 julia> GC.gc() julia>...
When using the `liteuart` driver, we have run into a few kernel hangs that are reproducible. Opening multiple `litex_term` processes to talk to a single device usually triggers it, which...
This allows Julia to set a default number of threads (usually `1`) to be used when no other thread counts are specified [0], to short-circuit the default OpenBLAS thread initialization...
Extracting the MacOS SDK 10.15 from Xcode release later than the 11.3 beta should fix header bugs that prevent GCC from being built against it. Upstream GCC bug tracking: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90835...