-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from xmos/docs/memory
Docs/memory
- Loading branch information
Showing
5 changed files
with
151 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
.. _sln_voice_memory_cpu: | ||
|
||
########################### | ||
Memory and CPU Requirements | ||
########################### | ||
|
||
****** | ||
Memory | ||
****** | ||
|
||
The table below lists the approximate memory requirements for the larger software components. All memory use estimates in the table below are based on the default configuration for the feature. Alternate configurations will require more or less memory. The estimates are provided as guideline to assist application developers judge the memory cost of extending the application or benefit of removing an existing feature. It can be assumed that the memory requirement of components not listed in the table below are under 5 kB. | ||
|
||
.. list-table:: Memory Requirements | ||
:widths: 50 50 | ||
:header-rows: 1 | ||
:align: left | ||
|
||
* - Component | ||
- Memory Use (kB) | ||
* - Stereo Adaptive Echo Canceler (AEC) | ||
- 275 | ||
* - Wanson Speech Recognition Engine | ||
- 194 | ||
* - Interference Canceler (IC) + Voice Activity Detector (VAD) | ||
- 93 | ||
* - USB | ||
- 20 | ||
* - Noise Supressor (NS) | ||
- 15 | ||
* - Adaptive Gain Control (AGC) | ||
- 11 | ||
|
||
*** | ||
CPU | ||
*** | ||
|
||
The table below lists the approximate CPU requirements for the larger software components. All CPU use estimates in the table below are based on the default configuration for the feature. Alternate configurations will require more or less MIPS. The estimates are provided as guideline to assist application developers judge the MIP cost of extending the application or benefits of removing an existing feature. It can be assumed that the memory requirement of components not listed in the table below are under 1%. | ||
|
||
The following formula was used to convert CPU% to MIPS: | ||
|
||
MIPS = (CPU% / 100%) * (600 MHz / 5 cores) | ||
|
||
.. list-table:: CPU Requirements (@ 600 MHz) | ||
:widths: 50 50 50 | ||
:header-rows: 1 | ||
:align: left | ||
|
||
* - Component | ||
- CPU Use (%) | ||
- MIPS Use | ||
* - USB XUD | ||
- 100 | ||
- 120 | ||
* - I2S (slave mode) | ||
- 80 | ||
- 96 | ||
* - Stereo Adaptive Echo Canceler (AEC) | ||
- 80 | ||
- 96 | ||
* - Wanson Speech Recognition Engine | ||
- 80 | ||
- 96 | ||
* - Interference Canceler (IC) + Voice Activity Detector (VAD) | ||
- 20 | ||
- 24 | ||
* - Noise Supressor (NS) | ||
- 10 | ||
- 12 | ||
* - Adaptive Gain Control (AGC) | ||
- 5 | ||
- 6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters