| 693 | /// \param y second operand |
| 694 | /// \return bfloat16 sum stored in single-precision |
| 695 | MEGDNN_HOST MEGDNN_DEVICE static expr plus(float x, float y) { |
| 696 | return expr(x + y); |
| 697 | } |
| 698 | |
| 699 | /// Subtraction implementation. |
| 700 | /// \param x first operand |