burn_backend/backend/ops/modules/mod.rs
1/// Module with convolution operations.
2pub mod conv;
3
4/// Module with linear operations.
5pub mod linear;
6
7/// Module with attention operations.
8pub mod attention;
9
10/// Module with CTC loss operations.
11pub mod ctc;
12
13/// Module with unfold operations.
14pub mod unfold;
15
16/// Module with pooling operations.
17pub mod pool;
18
19/// Module for grid_sample operations
20pub mod grid_sample;
21
22mod base;
23
24pub use base::*;