cubek-convolution 0.2.0-pre.1

CubeK: Convolution Kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Kernels for data gradients
pub mod backward_data;
/// Kernels for weight gradients
pub mod backward_weight;
/// Kernels for forward convolution
pub mod forward;

/// Algorithms for the mapped matmul
pub mod algorithm;

mod launch;

pub use launch::*;