Changeset eba2bc7a


Ignore:
Timestamp:
Jan 8, 2019, 3:49:30 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn_org, feature/crepe_org
Children:
52b0e42
Parents:
f217068
Message:

[conv1d] avoid unused variable, update comment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv1d.c

    rf217068 reba2bc7a  
    275275// blas implementation
    276276//
    277 //  uses _sdot on the padded input to compute each output elements at once
     277//  uses gemv on the padded input to compute each output elements at once
    278278//
    279279// TODO
    280 //  - switch to sgemv to factorise over activations->shape[j]
    281280//  - avoid copy when padding_start == 0
    282281//  - optimize copying using tensor helpers
     
    286285{
    287286  uint_t i, j;
    288   smpl_t bias, acc;
    289287
    290288  uint_t sdot_size = c->kernel->shape[0] * c->kernel->shape[1];
    291   uint_t input_stride = c->stride_shape * c->padded_input->shape[1]
     289  uint_t input_stride = c->stride_shape * c->padded_input->shape[1];
    292290
    293291  AUBIO_ASSERT(c && input_tensor && activations);
Note: See TracChangeset for help on using the changeset viewer.