Chris Elrod

Results 96 issues of Chris Elrod

``` Making all in pet make[2]: Entering directory '/home/chriselrod/Documents/libraries/pluto/pet' make all-recursive make[3]: Entering directory '/home/chriselrod/Documents/libraries/pluto/pet' Making all in . make[4]: Entering directory '/home/chriselrod/Documents/libraries/pluto/pet' CXX pet.lo CC pet_check_code-pet_check_code.o CC libdep_a-all.o AR...

Julia's Documenter supports [```math](https://juliadocs.github.io/Documenter.jl/stable/man/latex/#Display-Equations) blocks for rendering LaTeX in what is otherwise markdown documents, e.g.: ``` ```md \begin{aligned} \nabla\cdot\mathbf{E} &= 4 \pi \rho \\ \nabla\cdot\mathbf{B} &= 0 \\ \nabla\times\mathbf{E} &=...

enhancement

So far, I think it'd be easier to navigate and understand ArrayInterface if everything was in a separate git repo. E.g., what did version 0.1.0 of ArrayInterfaceOffsetArrays look like, vs...

```julia julia> ix = 2; julia> A = rand(7, 5, 6); julia> src = view(view(A,ix, :, :),:); julia> ArrayInterface.StrideIndex(src) ERROR: TypeError: in typeassert, expected Tuple{Int64}, got a value of type...

```julia julia> using ArrayInterface, OffsetArrays, Test julia> amb = Test.detect_ambiguities(ArrayInterface, OffsetArrays) 5-element Vector{Tuple{Method, Method}}: (getindex(x::ArrayInterface.LazyAxis, i::AbstractUnitRange{var"#s15"} where var"#s15"

For example: https://github.com/chriselrod/StrideArrays.jl/pull/14

bug

Capturing variables in closures is problematic because it introduces non-local behavior and means that modifying one piece of code can result in changes in the behavior of code elsewhere, possibly...

enhancement

Minimal example: ```julia using Tullio, LoopVectorization @tullio out[i] := 0.1*data[i+o] o in 0:9 ``` Part of the expansion is: ```julia local 𝒢𝓍o = 0:9 local 𝒢𝓍i = (Tullio.subranges)((eachindex)(data), 𝒢𝓍o) local...

LoopVectorization

This is probably user error, but I'd like to know what I'm doing wrong/how the problem is being set up differently. In Julia, I get ```julia julia> using JuMP, HiGHS...