| 717 | /// \param y second operand |
| 718 | /// \return bfloat16 quotient stored in single-precision |
| 719 | MEGDNN_HOST MEGDNN_DEVICE static expr divides(float x, float y) { |
| 720 | return expr(x / y); |
| 721 | } |
| 722 | |
| 723 | /// Output implementation. |
| 724 | /// \param out stream to write to |