Changeset f352c75


Ignore:
Timestamp:
Dec 29, 2021, 5:51:58 PM (2 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe
Children:
7ba59f1
Parents:
986e4b7
git-author:
Paul Brossier <piem@piem.org> (01/16/19 23:47:06)
git-committer:
Paul Brossier <piem@piem.org> (12/29/21 17:51:58)
Message:

[conv1d] improve comments, wrap long line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv1d.c

    r986e4b7 rf352c75  
    5151};
    5252
    53 static void aubio_conv1d_debug(aubio_conv1d_t *c, aubio_tensor_t *input_tensor);
     53static
     54void aubio_conv1d_debug(aubio_conv1d_t *c, aubio_tensor_t *input_tensor);
    5455
    5556aubio_conv1d_t *new_aubio_conv1d(uint_t n_filters, uint_t kernel_shape[1])
     
    240241    // get bias
    241242    bias = c->bias->data[i];
    242     stride_a = 0; // k * c->stride_shape
     243    stride_a = 0; // j * c->stride_shape
    243244    // for each output
    244245    for (j = 0; j < activations->shape[0]; j++) {
Note: See TracChangeset for help on using the changeset viewer.