Expand description
Shared types used by AOCL safe wrappers.
Pull-out crate for the matrix-orientation / triangular-storage enums
that recur across BLAS, LAPACK, sparse-BLAS, and data-analytics calls.
Each safe aocl-* crate accepts these types and converts them to the
corresponding native FFI representation at its boundary.
Modules§
- sealed
- Module containing a sealed marker trait for use as a bound on public traits whose set of implementing types should not grow outside this project.
Structs§
- Complex32
- Single-precision complex number, ABI-compatible with the C struct
{ float real; float imag; }used by BLIS’sscomplex, LAPACK’slapack_complex_float, and FFTW’sfftwf_complex. - Complex64
- Double-precision complex number, ABI-compatible with the C struct
{ double real; double imag; }used by BLIS’sdcomplex, LAPACK’slapack_complex_double, and FFTW’sfftw_complex.