rustfs-erasure-codec 7.0.0

Rust implementation of Reed-Solomon erasure coding
Documentation
// Auto-generated specialized encode functions for common configurations.
// The actual implementations are generated by build.rs into OUT_DIR/codegen_encode.rs.

#[cfg(all(
    feature = "simd-neon",
    target_arch = "aarch64",
    not(target_env = "msvc"),
    not(any(target_os = "android", target_os = "ios"))
))]
include!(concat!(env!("OUT_DIR"), "/codegen_encode.rs"));

#[cfg(not(all(
    feature = "simd-neon",
    target_arch = "aarch64",
    not(target_env = "msvc"),
    not(any(target_os = "android", target_os = "ios"))
)))]
pub(crate) fn try_encode_codegen_neon(
    _data_shard_count: usize,
    _parity_shard_count: usize,
    _parity_rows: &[&[u8]],
    _data: &[&[u8]],
    _parity: &mut [&mut [u8]],
    _shard_len: usize,
) -> bool {
    false
}