| 981 | ConstantFoldingRule FoldFToI() { return FoldFPUnaryOp(FoldFToIOp()); } |
| 982 | ConstantFoldingRule FoldIToF() { return FoldFPUnaryOp(FoldIToFOp()); } |
| 983 | ConstantFoldingRule FoldQuantizeToF16() { |
| 984 | return FoldFPUnaryOp(FoldQuantizeToF16Scalar()); |
| 985 | } |
| 986 | |
| 987 | // Define the folding rules for subtraction, addition, multiplication, and |
| 988 | // division for floating point values. |
no test coverage detected