| 701 | /// \param y second operand |
| 702 | /// \return bfloat16 difference stored in single-precision |
| 703 | MEGDNN_HOST MEGDNN_DEVICE static expr minus(float x, float y) { |
| 704 | return expr(x - y); |
| 705 | } |
| 706 | |
| 707 | /// Multiplication implementation. |
| 708 | /// \param x first operand |