You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Snippets] Fix exec_num precision issues in LinearIR expression ordering (#31975)
### Details:
Improve precision of the execution number assignment in
`LinearIR::get_inserted_expr_exec_num()` by replacing simple arithmetic
operations (+1, -1) with std::nextafter() calls. This ensures proper FP
precision when determining execution order for inserted expressions,
preventing precision issues.
Example:
```
2.76568e+307 + 1 == 2.76568e+307
```
### Tickets:
- required for #31950
0 commit comments