singe-npp 0.1.0-alpha.8

Safe Rust wrappers for NVIDIA Performance Primitives library (NPP).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

#[path = "arithmetic_constant_multiply_host.rs"]
mod host;
pub use host::*;

#[path = "arithmetic_constant_multiply_device.rs"]
mod device;
pub use device::*;

#[path = "arithmetic_constant_multiply_host_scale.rs"]
mod host_scale;
pub use host_scale::*;

#[path = "arithmetic_constant_multiply_device_scale.rs"]
mod device_scale;
pub use device_scale::*;