Skip to content

Commit

Permalink
Trying to fix rir builder test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Aug 7, 2024
1 parent b1052c4 commit 44bc8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyroomacoustics/tests/test_build_rir.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def build_rir_wrap(time, alpha, visibility, fs, fdl):
fdl2 = (fdl - 1) // 2

# the number of samples needed
N = int(np.ceil(time.max() * fs) + fdl)
N = int(np.ceil(time.max() * fs) + fdl + 1)

ir_ref = np.zeros(N)
ir_cython = np.zeros(N)
Expand Down

0 comments on commit 44bc8b5

Please sign in to comment.