gam 0.3.121

Generalized penalized likelihood engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Solver GPU kernels and dispatch wiring.
//!
//! Process-wide GPU policy and direct device selection live in [`crate::gpu`];
//! the domain compute kernels live in [`crate::gpu::kernels`]. This module owns
//! the solver-side device dispatch glue: the PIRLS CUDA kernel bodies
//! ([`pirls_gpu`], [`pirls_dispatch_wire`]), their PIRLS-side host admission
//! shim ([`pirls_host_dispatch`], folded here from `solver/pirls/gpu_dispatch.rs`),
//! and the REML/arrow-Schur device entry points.

pub mod arrow_schur_gpu;
pub(crate) mod pirls_dispatch_wire;
pub mod pirls_gpu;
pub(crate) mod pirls_host_dispatch;
pub mod reml_gpu;
pub(crate) mod reml_outer;