A Futhark library for efficient statically-sized vectors. This is useful when working with many small vectors that do not need to be individually stored in memory.
$ futhark pkg add github.com/athas/vector
$ futhark pkg sync
import"lib/github.com/athas/vector/vector"modulevector_2=cat_vectorvector_1vector_1modulevector_3=cat_vectorvector_2vector_1modulevector_5=cat_vectorvector_2vector_3modulevector_8=cat_vectorvector_5vector_3defmain (xs: [vector_8.length]i32) =xs|>vector_8.from_array|>vector_8.map (+1)
|>vector_8.to_array