runmat_runtime/builtins/acceleration/gpu/mod.rs
1//! Acceleration builtins: gpuArray, gather, gpuDevice, gpuInfo.
2//!
3//! These builtins provide explicit GPU array support using the runmat-accelerate-api
4//! provider interface. If no provider is registered, calls will return an error.
5
6pub mod arrayfun;
7pub mod gather;
8pub mod gpuarray;
9pub mod gpudevice;
10pub mod gpuinfo;
11pub mod pagefun;