tetration 0.1.8

Chunked tensor .tet format, tet CLI, and optional C ABI (tetration-ffi)
Documentation
//! Phase 10: optional device scalar reductions after host decode.
//!
//! - **10b** `tetration-gpu` — CUDA (`cuda` / `cuda:multi` / `auto` on NVIDIA)
//! - **10c** `tetration-metal` — Metal (`metal` / `auto` on macOS)
//! - **10d** `tetration-rocm` — HIP via cudarc (`rocm` / `rocm:multi` on AMD Linux)

#[cfg(all(feature = "tetration-gpu", feature = "tetration-rocm"))]
compile_error!("enable only one of `tetration-gpu` or `tetration-rocm` per build");

mod scalar_fold;

#[cfg(any(
    feature = "tetration-gpu",
    feature = "tetration-rocm",
    feature = "tetration-metal"
))]
mod streaming_fold;

#[cfg(any(feature = "tetration-gpu", feature = "tetration-rocm"))]
mod multi;

#[cfg(any(feature = "tetration-gpu", feature = "tetration-rocm"))]
mod cuda;

#[cfg(feature = "tetration-rocm")]
mod rocm;

#[cfg(all(feature = "tetration-metal", target_os = "macos"))]
mod metal;

use crate::query::device::DeviceRoute;
use crate::query::fold::FoldPlanOutcome;
use crate::query::fold::reduction::ReductionKind;
use crate::query::types::ReadPlan;
use crate::utils::dtype::ElementDtype;

/// Host decode + device reduce when [`DeviceRoute::gpu_reduce`] is set.
pub(crate) fn try_scalar_gpu_fold(
    mmap: &[u8],
    plan: &ReadPlan,
    max_preview: usize,
    kind: ReductionKind,
    route: DeviceRoute,
    dtype: ElementDtype,
) -> Result<(FoldPlanOutcome, DeviceRoute), &'static str> {
    if !route.gpu_reduce {
        return Err("gpu_not_requested");
    }
    if !crate::query::device::gpu_supports_scalar_kind(kind) {
        return Err("gpu_unsupported_op");
    }
    if !matches!(dtype, ElementDtype::F32 | ElementDtype::F16) {
        return Err("gpu_unsupported_dtype");
    }
    let f16_input = dtype == ElementDtype::F16;

    match route.used {
        #[cfg(all(feature = "tetration-metal", target_os = "macos"))]
        "metal" => {
            return scalar_fold::try_scalar_f32_fold_metal(
                mmap,
                plan,
                max_preview,
                kind,
                route,
                f16_input,
            );
        }
        #[cfg(any(feature = "tetration-gpu", feature = "tetration-rocm"))]
        "cuda" | "cuda:multi" => {
            return scalar_fold::try_scalar_f32_fold_cuda(
                mmap,
                plan,
                max_preview,
                kind,
                route,
                f16_input,
            );
        }
        #[cfg(feature = "tetration-rocm")]
        "rocm" | "rocm:multi" => {
            return scalar_fold::try_scalar_f32_fold_rocm(
                mmap,
                plan,
                max_preview,
                kind,
                route,
                f16_input,
            );
        }
        _ => {}
    }

    let _ = (mmap, plan, max_preview, kind, route, f16_input);
    Err("gpu_feature_disabled")
}

/// Fraction of reported device memory allowed for one H2D buffer (rest for driver + scratch).
#[cfg(any(
    feature = "tetration-gpu",
    feature = "tetration-rocm",
    feature = "tetration-metal"
))]
pub(crate) const GPU_VRAM_BUFFER_FRACTION: f64 = 0.85;

/// Population variance (`ddof = 0`) on a dense host `f32` buffer (`f64` sum / sumsq, like CPU fold).
#[cfg(any(
    feature = "tetration-gpu",
    feature = "tetration-rocm",
    feature = "tetration-metal"
))]
#[must_use]
pub(crate) fn host_f32_population_variance(vals: &[f32]) -> f64 {
    let n = vals.len();
    if n == 0 {
        return 0.0;
    }
    let (sum, sumsq) = crate::query::fold::variance_simd::f32_sum_sumsq(vals);
    let nf = n as f64;
    let mean = sum / nf;
    (sumsq / nf - mean * mean).max(0.0)
}