Tomáš Votroubek
Tomáš Votroubek
Is it possible to support views into arrays? It seems the api might be too specific. e.g. a Matrix works as expected: ```julia A = [1 2 3; 4 5...
When locate is called with `isolate=true` the isolated dlopen can fail, while the nonisolated dlopen can succeed. https://github.com/JuliaPackaging/BinaryProvider.jl/blob/81f03dad25dfd76845f4fbc0eea1a383280f334c/src/Products.jl#L169 When the isolated dlopen fails with `verbose=true`, BinaryProvider says: ``` [ Info:...
Hello, I do not understand why HC is unable to solve the system `x = 0`. Solving it ```jl using HomotopyContinuation @var x system = System([x]) res = solve(system) ```...
Hi, I'm having trouble getting `CUDA.jl` to run on a server because `AbstractFFTs.jl` fails during precompilation. Any ideas what might be causing it or how to fix it? ``` (scut)...
This is the only test I could find for the `string-locale=?` function https://github.com/racket/racket/blob/1f49402c4f54bd25826b9a7c80096cd7d0da7843/pkgs/racket-test-core/tests/racket/unicode.rktl#L1196 it verifies that `#\Â` does not equal `#\â`. That is true, but `string-equal=? "#\uC2" "\uE2"` has the...