| 222 | } |
| 223 | |
| 224 | CUTLASS_HOST_DEVICE |
| 225 | bool isnormal(cutlass::tfloat32_t const& h) { |
| 226 | return h.exponent_biased() && h.exponent_biased() != 0x0ff; |
| 227 | } |
| 228 | |
| 229 | CUTLASS_HOST_DEVICE |
| 230 | int fpclassify(cutlass::tfloat32_t const& h) { |
nothing calls this directly
no test coverage detected