Skip to content

Commit 12e50a1

Browse files
committed
enable multiprocessing feature on master
1 parent bb67ec2 commit 12e50a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ print(pesq(rate, ref, deg, 'wb'))
7575
print(pesq(rate, ref, deg, 'nb'))
7676
```
7777

78-
# Usage for batch version
78+
# Usage for `multiprocessing` feature
7979

8080
```python
8181
def pesq_batch(fs, ref, deg, mode='wb', n_processor=None, on_error=PesqError.RAISE_EXCEPTION):

pesq/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44

55
from ._pesq import pesq, pesq_batch
66
from ._pesq import PesqError, InvalidSampleRateError, OutOfMemoryError, BufferTooShortError, NoUtterancesError
7+
__all__ = ['pesq', 'pesq_batch',
8+
'PesqError', 'InvalidSampleRateError', 'OutOfMemoryError', 'BufferTooShortError', 'NoUtterancesError']

0 commit comments

Comments
 (0)