Changeset bbfa9a4 for python


Ignore:
Timestamp:
Nov 26, 2018, 6:53:43 PM (6 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/timestretch, fix/ffmpeg5, master
Children:
adc6e02
Parents:
8a11e2f (diff), db3eb5c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into feature/pytest

Location:
python/tests
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_phasevoc.py

    r8a11e2f rbbfa9a4  
    5555                        + 'This is expected when using fftw3 on powerpc.')
    5656            assert_equal ( r, 0.)
     57
     58    def test_no_overlap(self):
     59        win_s, hop_s = 1024, 1024
     60        f = pvoc (win_s, hop_s)
     61        t = fvec (hop_s)
     62        for _ in range(4):
     63            s = f(t)
     64            r = f.rdo(s)
     65            assert_equal ( t, 0.)
    5766
    5867    resynth_noise_args = "hop_s, ratio"
Note: See TracChangeset for help on using the changeset viewer.