Absolute value. See also:** Documentation for [std::fabs](https://en.cppreference.com/w/cpp/numeric/math/fabs). \param arg operand \return absolute value of \a arg
| 2726 | /// \param arg operand |
| 2727 | /// \return absolute value of \a arg |
| 2728 | inline HALF_CONSTEXPR half fabs(half arg) { return half(detail::binary, arg.data_&0x7FFF); } |
| 2729 | |
| 2730 | /// Absolute value. |
| 2731 | /// **See also:** Documentation for [std::abs](https://en.cppreference.com/w/cpp/numeric/math/fabs). |