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

Change-Id: I34ad35d4371896dbc70c1bcc338791f98f39ff63


[ROCm/hip commit: 911320a5d1]
Этот коммит содержится в:
Rahul Garg
2023-10-13 20:08:54 -04:00
коммит произвёл Julia Jiang
родитель 4bd7079059
Коммит d83b79e179
2 изменённых файлов: 501 добавлений и 501 удалений
Разница между файлами не показана из-за своего большого размера Загрузить разницу
+1 -1
Просмотреть файл
@@ -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