rcudnn 1.8.0

safe Rust wrapper for CUDA's cuDNN
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Provides safe API calls to CUDA's cuDNN library.
//!
//! Usually you will not use those calls directly, but acess them through,
//! the higher-level structs, exposed at the root of this crate, which provides
//! a more convenient and "rusty" interface.

pub mod activation;
pub mod convolution;
pub mod cuda;
pub mod dropout;
pub mod normalization;
pub mod pooling;
pub mod rnn;
pub mod softmax;
pub mod tensor;
pub mod utils;