mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
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:
parent
e1ca8ee6d4
commit
b8c40b7813
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue