Sergio Sánchez Ramírez

Results 25 issues of Sergio Sánchez Ramírez

I am working with nested NumPy arrays (arrays of arrays) and I want to dispatch based on its nesting level. ```python from plum import dispatch def something(a: NestedArray[0]): pass def...

bug

Every package registered in the official [JuliaRegistries/General](https://github.com/JuliaRegistries/General) registry, has its documentation automatically built and uploaded to [JuliaHub](https://juliahub.com/ui/Home). JuliaHub is a company created by the authors of the Julia language to...

`Base.Iterators.flatmap` was introduced in Julia 1.9 but supporting it for earlier versions should be as easy as doing (as described in the docs): ```julia flatmap(f, iterators...) = Iterators.flatten(map(f, iterators...) ```

I'm having some problems with `flex` and `bison` on other platforms, so I don't think it's ready to merge yet. I will post some stacktraces when I figure out more...

build
external dependencies
stdlib JLLs
llvm

I'm interested in using your XLA builds in Julia for the [MLIR.jl](https://github.com/JuliaLabs/MLIR.jl) project, but we need the MLIR-C API to be included. This PR adds the following Bazel targets: -...

While trying to import some ChainRules from a package, I got the following error: ```julia julia> using Enzyme, OMEinsum julia> Enzyme.@import_rrule(typeof(einsum), OMEinsum.EinCode, Any, Any) UndefVarError: `OMEinsum` not defined Stacktrace: [1]...