Update README.md

pull/33/head
drowe67 2020-04-27 21:11:00 +09:30 committed by GitHub
parent 8182b73dac
commit a1c6cb736e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -25,14 +25,22 @@ LPCNet at 1733 bits/s using direct-split quantiser:
``` ```
sox ../../wav/wia.wav -t raw -r 16000 - | ./lpcnet_enc -s | ./lpcnet_dec -s | aplay -f S16_LE -r 16000 sox ../../wav/wia.wav -t raw -r 16000 - | ./lpcnet_enc -s | ./lpcnet_dec -s | aplay -f S16_LE -r 16000
``` ```
# CTests
## Manually Selecting SIMD Technology
Cmake will select the fastest SIMD available (AVX/SSSE/None), however you can manually select e.g.:
```
make -DDISABLE_CPU_OPTIMIZATION=ON -DSSE=ON -DCODEC2_BUILD_DIR=~/codec2/build_linux ..
```
## CTests
``` ```
$ cd ~/LPCNet/build_linux $ cd ~/LPCNet/build_linux
$ ctest $ ctest
``` ```
Note, due to precision/library issues several tests (1-3) will only pass on certain machines such as Ubuntu 16 and 18, Ubuntu 17 is known to fail. Note, due to precision/library issues several tests (1-3) will [only pass on some machines](https://github.com/drowe67/LPCNet/issues/17).
# Reading Further # Reading Further