Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgaebel/soa
https://github.com/cgaebel/soa
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cgaebel/soa
- Owner: cgaebel
- License: mit
- Created: 2015-02-01T19:50:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T03:31:13.000Z (about 5 years ago)
- Last Synced: 2024-10-13T02:50:29.385Z (about 1 month ago)
- Language: Rust
- Size: 862 KB
- Stars: 17
- Watchers: 2
- 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.[![crates.io](https://img.shields.io/crates/v/soa.svg)](https://crates.io/crates/soa/)
[![Build Status](https://travis-ci.org/cgaebel/soa.svg?branch=master)](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/).