Changeset b701179 for src/fvec.c


Ignore:
Timestamp:
Oct 1, 2017, 6:55:35 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
f3f0d14
Parents:
14e300e
Message:

src/*.c, wscript: remove trailing spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fvec.c

    r14e300e rb701179  
    103103#if defined(HAVE_INTEL_IPP)
    104104  aubio_ippsMul(s->data, weight->data, s->data, (int)length);
    105 #elif defined(HAVE_ACCELERATE) 
     105#elif defined(HAVE_ACCELERATE)
    106106  aubio_vDSP_vmul( s->data, 1, weight->data, 1, s->data, 1, length );
    107107#else
     
    117117#if defined(HAVE_INTEL_IPP)
    118118  aubio_ippsMul(in->data, weight->data, out->data, (int)length);
    119 #elif defined(HAVE_ACCELERATE) 
     119#elif defined(HAVE_ACCELERATE)
    120120  aubio_vDSP_vmul(in->data, 1, weight->data, 1, out->data, 1, length);
    121121#else
Note: See TracChangeset for help on using the changeset viewer.