| 201 | } |
| 202 | |
| 203 | CUTLASS_HOST_DEVICE |
| 204 | bool isnan(cutlass::tfloat32_t const& h) { |
| 205 | return (h.exponent_biased() == 0x0ff) && h.mantissa(); |
| 206 | } |
| 207 | |
| 208 | CUTLASS_HOST_DEVICE |
| 209 | bool isfinite(cutlass::tfloat32_t const& h) { |
nothing calls this directly
no test coverage detected