StructsOfArrays.jl icon indicating copy to clipboard operation
StructsOfArrays.jl copied to clipboard

Structures of Arrays that behave like Arrays of Structures

Results 12 StructsOfArrays.jl issues
Sort by recently updated
recently updated
newest added

This allows to get updates for GitHub actions automatically. I have used this for my own packages, the [Trixi.jl framework](https://github.com/trixi-framework), and the [SciML organization](https://github.com/SciML). After merging this, you could also...

This updates StructsOfArrays to work with Julia 1.4.1 and turns it into a package. In addition basic CUDA support has been added (thanks @vchuravy!) so that `StructOfArrays` can be passed...

To avoid confusion, maybe add a note at the README.md saying that this package has been superseded by https://github.com/JuliaArrays/StructArrays.jl? Or just archive this repo.

You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...

Not sure how much this package is still maintained. But this pr should make it work with Julia 0.7 and 1.0 again.

Hi! I've written a small package based on Julia 0.7 that does very similar things to this one. It's targeted more towards `NamedTuples` than general `struct` in order to support...

Running the example from the readme on `0.7.0-DEV.2484` ```julia using BenchmarkTools using StructsofArrays regular = complex(randn(1000000), randn(1000000)) soa = convert(StructOfArrays, regular) function f(x, a) s = zero(eltype(x)) @simd for i...

Does the design of StructsOfArrays allow it to be precompiled? If so, enabling precompilation would be nice, so that precompiled packages can depend on StructsOfArrays.

See the new manual section for usage. Still WIP, and not completely tested yet.

https://github.com/JuliaArrays