apple-accelerate 0.2.1

Safe Rust bindings for Apple's Accelerate framework on macOS using a Swift bridge with optional raw C FFI
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(missing_docs, non_camel_case_types, non_upper_case_globals)]

#[repr(C)]
#[derive(Clone, Copy, Debug, Default, PartialEq)]
pub struct simd_float4 {
    pub x: f32,
    pub y: f32,
    pub z: f32,
    pub w: f32,
}