Skip to content

Commit

Permalink
Update documentation for branch main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 10, 2024
1 parent 4a65390 commit 8403737
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions main/footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function writeHeader() {
document.write('Version 1.15.1-dev17');
document.write('Version 1.15.1-dev18');
};

function writeFooter() {
document.write('Generated on Wed Jan 10 2024 07:33:19 for CMSIS-DSP 1.15.1-dev17+g91e83cb. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.');
document.write('Generated on Wed Jan 10 2024 08:06:20 for CMSIS-DSP 1.15.1-dev18+g4acfef7. Copyright © 2024 Arm Limited (or its affiliates). All rights reserved.');
};
4 changes: 3 additions & 1 deletion main/group__float__to__x.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ <h2 class="memtitle"><span class="permalink"><a href="#gaae21be47db707e79552f3e8
pDst[n] = (q31_t)(pSrc[n] * 2147483648); 0 &lt;= n &lt; blockSize.
</pre></dd></dl>
<dl class="section user"><dt>Scaling and Overflow Behavior</dt><dd>The function uses saturating arithmetic. Results outside of the allowable Q31 range[0x80000000 0x7FFFFFFF] are saturated.</dd></dl>
<dl class="section note"><dt>Note</dt><dd>In order to apply rounding, the library should be rebuilt with the ROUNDING macro defined in the preprocessor section of project options. </dd></dl>
<dl class="section note"><dt>Note</dt><dd>In order to apply rounding, the library should be rebuilt with the ROUNDING macro defined in the preprocessor section of project options.</dd>
<dd>
If the input float values are very big (2**32) then the function won't be able to saturate to the right values. If you expect very big float values in the input array then you should force those values to +1 or -1 before calling this function. For reasonable float values (&lt; 2**32), the function will saturate correctly. </dd></dl>

</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//--- list of versions ---
const versions = {
"main": "1.15.1-dev17",
"main": "1.15.1-dev18",
"latest": "1.15.0",
"v1.14.4": "1.14.4",
"v1.14.3": "1.14.3",
Expand Down

0 comments on commit 8403737

Please sign in to comment.