rai_nn/
conv.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
use crate::init::{self, Init, DEFAULT_KAIMING_NORMAL};
use rai_core::{AsDevice, Shape, Tensor, Type};
use rai_derive::Module;
use std::fmt::Debug;

#[derive(Clone, Debug)]
pub struct Conv1dConfig {
    pub padding: usize,
    pub stride: usize,
    pub dilation: usize,
    pub groups: usize,
}

impl Default for Conv1dConfig {
    fn default() -> Self {
        Self {
            padding: 0,
            stride: 1,
            dilation: 1,
            groups: 1,
        }
    }
}

#[derive(Clone, Debug, Module)]
#[module(crate = rai_core)]
pub struct Conv1d {
    weight: Tensor,
    bias: Option<Tensor>,
    #[param(skip)]
    config: Conv1dConfig,
}

pub trait IntoConv1dConfig: Debug {
    fn into_conv1d_config(self) -> Conv1dConfig;
}

impl IntoConv1dConfig for Conv1dConfig {
    fn into_conv1d_config(self) -> Conv1dConfig {
        self
    }
}

impl Conv1d {
    pub fn new(
        in_channels: usize,
        out_channels: usize,
        kernel_size: usize,
        config: impl IntoConv1dConfig,
        has_bias: bool,
        dtype: impl Type,
        device: impl AsDevice,
    ) -> Self {
        let device = device.device();
        let config = config.into_conv1d_config();
        let weight = Tensor::rand(
            [out_channels, in_channels / config.groups, kernel_size],
            dtype,
            device,
        );
        let bias = if has_bias {
            Some(Tensor::rand([out_channels], dtype, device))
        } else {
            None
        };
        Self {
            weight,
            bias,
            config,
        }
    }

    pub fn fwd(&self, x: &Tensor) -> Tensor {
        let x = x.conv1d(
            &self.weight,
            self.config.padding,
            self.config.stride,
            self.config.dilation,
            self.config.groups,
        );
        match &self.bias {
            Some(bias) => {
                let bias = bias.reshape([1, bias.shape_at(0), 1, 1]);
                x + bias
            }
            None => x,
        }
    }
}

#[derive(Clone, Debug)]
pub struct Conv2dConfig {
    pub padding: [usize; 2],
    pub stride: [usize; 2],
    pub dilation: [usize; 2],
    pub groups: usize,
}

impl Default for Conv2dConfig {
    fn default() -> Self {
        Self {
            padding: [0, 0],
            stride: [1, 1],
            dilation: [1, 1],
            groups: 1,
        }
    }
}

#[derive(Clone, Debug, Module)]
#[module(crate = rai_core)]
pub struct Conv2d {
    weight: Tensor,
    bias: Option<Tensor>,
    #[param(skip)]
    config: Conv2dConfig,
}

pub trait IntoConv2dConfig: Debug {
    fn into_conv2d_config(self) -> Conv2dConfig;
}

impl IntoConv2dConfig for Conv2dConfig {
    fn into_conv2d_config(self) -> Conv2dConfig {
        self
    }
}

impl Conv2d {
    pub fn new(
        in_channels: usize,
        out_channels: usize,
        kernel_size: usize,
        config: impl IntoConv2dConfig,
        has_bias: bool,
        dtype: impl Type,
        device: impl AsDevice,
    ) -> Self {
        let bound = 1. / (in_channels as f64).sqrt();
        let bias_init = match has_bias {
            true => Some(init::Uniform::new(-bound, bound)),
            false => None,
        };
        Self::new_with_init(
            in_channels,
            out_channels,
            kernel_size,
            config,
            dtype,
            device,
            DEFAULT_KAIMING_NORMAL,
            bias_init,
        )
    }

    #[allow(clippy::too_many_arguments)]
    pub fn new_with_init(
        in_channels: usize,
        out_channels: usize,
        kernel_size: usize,
        config: impl IntoConv2dConfig,
        dtype: impl Type,
        device: impl AsDevice,
        weight_init: impl Init,
        bias_init: Option<impl Init>,
    ) -> Self {
        let device = device.device();
        let config = config.into_conv2d_config();
        let weight = weight_init.new_tensor(
            [
                out_channels,
                in_channels / config.groups,
                kernel_size,
                kernel_size,
            ],
            dtype,
            device,
        );
        let bias = bias_init.map(|init| init.new_tensor([out_channels], dtype, device));
        Self {
            weight,
            bias,
            config,
        }
    }

    pub fn fwd(&self, x: &Tensor) -> Tensor {
        let x = x.conv2d(
            &self.weight,
            self.config.padding,
            self.config.stride,
            self.config.dilation,
            self.config.groups,
        );
        match &self.bias {
            Some(bias) => {
                let bias = bias.reshape([1, bias.shape_at(0), 1, 1]);
                x + bias
            }
            None => x,
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct ConvTranspose1dConfig {
    pub padding: usize,
    pub output_padding: usize,
    pub stride: usize,
    pub dilation: usize,
    pub groups: usize,
}

impl Default for ConvTranspose1dConfig {
    fn default() -> Self {
        Self {
            padding: 0,
            output_padding: 0,
            stride: 1,
            dilation: 1,
            groups: 1,
        }
    }
}

#[derive(Clone, Debug, Module)]
#[module(crate = rai_core)]
pub struct ConvTranspose1d {
    weight: Tensor,
    bias: Option<Tensor>,
    #[param(skip)]
    config: ConvTranspose1dConfig,
}

pub trait IntoConvTranspose1dConfig: Debug {
    fn into_conv_transpose1d_config(self) -> ConvTranspose1dConfig;
}

impl IntoConvTranspose1dConfig for ConvTranspose1dConfig {
    fn into_conv_transpose1d_config(self) -> ConvTranspose1dConfig {
        self
    }
}

impl ConvTranspose1d {
    pub fn new(
        in_channels: usize,
        out_channels: usize,
        kernel_size: usize,
        config: impl IntoConvTranspose1dConfig,
        has_bias: bool,
        dtype: impl Type,
        device: impl AsDevice,
    ) -> Self {
        let device = device.device();
        let config = config.into_conv_transpose1d_config();
        let weight = Tensor::rand(
            [in_channels, out_channels / config.groups, kernel_size],
            dtype,
            device,
        );
        let bias = if has_bias {
            Some(Tensor::rand([out_channels], dtype, device))
        } else {
            None
        };
        Self {
            weight,
            bias,
            config,
        }
    }

    pub fn fwd(&self, x: &Tensor) -> Tensor {
        let x = x.conv_transpose1d(
            &self.weight,
            self.config.padding,
            self.config.output_padding,
            self.config.stride,
            self.config.dilation,
            self.config.groups,
        );
        match &self.bias {
            Some(bias) => {
                let bias = bias.reshape([1, bias.shape_at(0), 1, 1]);
                x + bias
            }
            None => x,
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct ConvTranspose2dConfig {
    pub padding: [usize; 2],
    pub output_padding: [usize; 2],
    pub stride: [usize; 2],
    pub dilation: [usize; 2],
    pub groups: usize,
}

impl Default for ConvTranspose2dConfig {
    fn default() -> Self {
        Self {
            padding: [0, 0],
            output_padding: [0, 0],
            stride: [1, 1],
            dilation: [1, 1],
            groups: 1,
        }
    }
}

#[derive(Clone, Debug, Module)]
#[module(crate = rai_core)]
pub struct ConvTranspose2d {
    weight: Tensor,
    bias: Option<Tensor>,
    #[param(skip)]
    config: ConvTranspose2dConfig,
}

pub trait IntoConvTranspose2dConfig: Debug {
    fn into_conv_transpose2d_config(self) -> ConvTranspose2dConfig;
}

impl IntoConvTranspose2dConfig for ConvTranspose2dConfig {
    fn into_conv_transpose2d_config(self) -> ConvTranspose2dConfig {
        self
    }
}

impl ConvTranspose2d {
    pub fn new(
        in_channels: usize,
        out_channels: usize,
        kernel_size: usize,
        config: impl IntoConvTranspose2dConfig,
        has_bias: bool,
        dtype: impl Type,
        device: impl AsDevice,
    ) -> Self {
        let device = device.device();
        let config = config.into_conv_transpose2d_config();
        let weight = Tensor::rand(
            [
                in_channels,
                out_channels / config.groups,
                kernel_size,
                kernel_size,
            ],
            dtype,
            device,
        );
        let bias = if has_bias {
            Some(Tensor::rand([out_channels], dtype, device))
        } else {
            None
        };
        Self {
            weight,
            bias,
            config,
        }
    }

    pub fn fwd(&self, x: &Tensor) -> Tensor {
        let x = x.conv_transpose2d(
            &self.weight,
            self.config.padding,
            self.config.output_padding,
            self.config.stride,
            self.config.dilation,
            self.config.groups,
        );
        match &self.bias {
            Some(bias) => {
                let bias = bias.reshape([1, bias.shape_at(0), 1, 1]);
                x + bias
            }
            None => x,
        }
    }
}