Define the folding rule for conversion between floating point and integer
| 979 | |
| 980 | // Define the folding rule for conversion between floating point and integer |
| 981 | ConstantFoldingRule FoldFToI() { return FoldFPUnaryOp(FoldFToIOp()); } |
| 982 | ConstantFoldingRule FoldIToF() { return FoldFPUnaryOp(FoldIToFOp()); } |
| 983 | ConstantFoldingRule FoldQuantizeToF16() { |
| 984 | return FoldFPUnaryOp(FoldQuantizeToF16Scalar()); |
no test coverage detected