https://github.com/cgaebel/soa
https://github.com/cgaebel/soa
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cgaebel/soa
- Owner: cgaebel
- License: mit
- Created: 2015-02-01T19:50:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T03:31:13.000Z (over 5 years ago)
- Last Synced: 2025-03-18T05:51:16.777Z (4 months ago)
- Language: Rust
- Size: 862 KB
- Stars: 17
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SoA
=====Vector types, but instead of being represented as Array-Of-Struct, data is stored
as a Struct-Of-Arrays, or SoA.[](https://crates.io/crates/soa/)
[](https://travis-ci.org/cgaebel/soa)
Data stored in SoA is meant to be processed with SIMD operations, and as such,
all arrays are aligned to 16 bytes.A large subset of the `std::Vec` interface is supported, as well as some extras
to make writing efficient code more natural.Documentation
--------------See the very thorough [API Docs](https://cgaebel.github.io/soa/).