trustformers-mobile 0.1.1

Mobile deployment support for TrustformeRS (iOS, Android)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GPU Acceleration Support for Android
//!
//! This module provides GPU compute acceleration using Vulkan and OpenGL ES
//! for neural network inference on Android devices.

pub mod vulkan;
pub mod opengl_es;

// Re-export main types and functions
pub use vulkan::*;
pub use opengl_es::*;