runmat-runtime 0.4.1

Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Acceleration builtins: gpuArray, gather, gpuDevice, gpuInfo.
//!
//! These builtins provide explicit GPU array support using the runmat-accelerate-api
//! provider interface. If no provider is registered, calls will return an error.

pub mod arrayfun;
pub mod gather;
pub mod gpuarray;
pub mod gpudevice;
pub mod gpuinfo;
pub mod pagefun;
pub(crate) mod type_resolvers;