zan-sort 0.1.0

A hardware-oriented hybrid sorting engine achieving near-linear scaling via arithmetic routing and parallel SoA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # zan-sort
//!
//! A generic, hardware-optimized hybrid sorting library for Rust.
//! By abandoning traditional comparative algorithms in favor of O(N) arithmetic
//! routing and an `Ordex`-inspired parallel disjoint memory architecture,
//! it pushes modern DRAM bandwidth to its physical limits.

#![doc = include_str!("../README.md")]

pub mod core;
pub mod prelude;