Changeset 59162ae
- Timestamp:
- Jan 16, 2019, 11:48:55 PM (6 years ago)
- Branches:
- feature/crepe_org
- Children:
- a524de1
- Parents:
- c32d8b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/conv2d.c
rc32d8b2 r59162ae 27 27 typedef enum 28 28 { 29 PAD_SAME = 0, // TODO 30 PAD_VALID = 1, 31 //PAD_CAUSAL = 2, // TODO (1d only, for dilated convolution) 32 } aubio_conv2d_padding_type; 29 PAD_SAME = 0, // same, aka half mode 30 PAD_VALID = 1 // valid, aka no padding 31 } aubio_conv2d_padding_t; 33 32 34 33 struct _aubio_conv2d_t { … … 38 37 uint_t stride_shape[2]; // stride sizes 39 38 40 aubio_conv2d_padding_t ypepadding_mode;39 aubio_conv2d_padding_t padding_mode; 41 40 42 41 // these will be set after calling get_output_shape
Note: See TracChangeset
for help on using the changeset viewer.