Changeset 1aa6eb8


Ignore:
Timestamp:
Jan 16, 2019, 11:47:06 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
c32d8b2
Parents:
591f077
Message:

[conv1d] improve comments, wrap long line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv1d.c

    r591f077 r1aa6eb8  
    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.