Fix parameter naming that fails Doc generation. (#16717)

### Description
Rename `FromBits` param name to match the docs.

### Motivation and Context
Fix API Doc generation.
This commit is contained in:
Dmitri Smirnov 2023-07-16 22:02:05 -07:00 committed by GitHub
parent e1ca8ee6d4
commit b8c40b7813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -183,7 +183,7 @@ struct Float16_t : onnxruntime_float16::Float16Impl<Float16_t> {
/// </summary>
/// <param name="v">uint16_t bit representation of bfloat16</param>
/// <returns>new instance of Float16_t</returns>
constexpr static Float16_t FromBits(uint16_t x) noexcept { return Float16_t(x); }
constexpr static Float16_t FromBits(uint16_t v) noexcept { return Float16_t(v); }
/// <summary>
/// __ctor from float. Float is converted into float16 16-bit representation.