SWDEV-422771 - Update docs for math function for round mode support

Change-Id: I34ad35d4371896dbc70c1bcc338791f98f39ff63
This commit is contained in:
Rahul Garg
2023-10-13 20:08:54 -04:00
committed by Julia Jiang
parent 5b88d8787d
commit 911320a5d1
2 changed files with 501 additions and 501 deletions
+500 -500
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -169,7 +169,7 @@ can be contracted. Tolerance should be used for floating point comparsions.
## Math functions with special rounding modes
HIP does not support math functions with rounding modes ru (round up), rd (round down), and rz (round towards zero). HIP only supports math function with rounding mode rn (round to nearest). The math functions with postfixes _ru, _rd and _rz are implemented in the same way as math functions with postfix _rn. They serve as a workaround to get programs using them compiled.
Note: Currently, HIP only supports basic math functions with rounding mode rn (round to nearest). HIP does not support basic math functions with rounding modes ru (round up), rd (round down), and rz (round towards zero).
## Creating Static Libraries