| 38 | return __float2half(cosf(__half2float(a))); |
| 39 | } |
| 40 | __device__ __half __hfma(const __half a, __half b, __half c) { |
| 41 | return __float2half( |
| 42 | fmaf(__half2float(a), __half2float(b), __half2float(c))); |
| 43 | } |
| 44 | #endif |
| 45 | |
| 46 | // Utils |
no outgoing calls
no test coverage detected