eight_bytes 0.1.0

SIMD-like (SWAR) operations on vectors of eight bytes without using native SIMD instructions.
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented0 out of 0 items with examples
  • Size
  • Source code size: 30.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.96 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • apparentlymart

eight_bytes for Rust

This library implements types u8x8 and mask8x8 which both represent a vector of eight values packed into a u64, where the first is a vector of u8 and the second is a vector of bool.

The methods of these types can perform limited SIMD-like operations on those vectors without using native SIMD instructions, by using various bit manipulation tricks.