oxicuda-dnn 0.1.0

OxiCUDA DNN - GPU-accelerated deep learning primitives (cuDNN equivalent)
Documentation
1
2
3
4
5
6
7
8
9
//! Forward convolution (fprop) implementations.
//!
//! Each sub-module provides a different algorithm for computing the
//! forward pass of a convolution operation.

pub mod direct;
pub mod im2col_gemm;
pub mod implicit_gemm;
pub mod winograd;